From 1dd8228eee93ebde373d6db736adbe371219dbab Mon Sep 17 00:00:00 2001 From: Alban Gaignard Date: Thu, 4 Jul 2024 11:13:52 +0200 Subject: [PATCH] edamfu --- edamfu-xml/edamfu/__init__.py | 0 edamfu-xml/edamfu/cli.py | 0 edamfu-xml/edamfu/core.py | 23 + edamfu-xml/edamfu/reorder.py | 11 + edamfu-xml/edamfu/reorder_lxml.py | 122 + edamfu-xml/edamfu/tree.py | 641 + edamfu-xml/edamfu/utils.py | 124 + edamfu-xml/rdflib_for_edamfu.ipynb | 289 + edamfu-xml/requirements.txt | 99 + edamfu-xml/setup.py | 20 + edamfu-xml/tests/EDAM_dev.owl | 60979 +++++++++++++++++ edamfu-xml/tests/EDAM_dev.robot.owl | 61094 ++++++++++++++++++ edamfu-xml/tests/edamontology.org.owl | 61094 ++++++++++++++++++ edamfu-xml/tests/edamontology.org.robot.owl | 61094 ++++++++++++++++++ edamfu-xml/tests/output.xml | 2 + edamfu-xml/tests/test_core.py | 113 + edamfu/.vscode/settings.json | 11 + edamfu/edamfu/cli.py | 136 + edamfu/requirements.txt | 100 +- edamfu/tests/test_diff.py | 60 + src/edam_mod.ttl | 56251 ++++++++-------- src/edam_ref.ttl | 56240 ++++++++-------- src/notebooks/EdamDiff.ipynb | 712 +- 23 files changed, 302748 insertions(+), 56467 deletions(-) create mode 100644 edamfu-xml/edamfu/__init__.py create mode 100644 edamfu-xml/edamfu/cli.py create mode 100644 edamfu-xml/edamfu/core.py create mode 100644 edamfu-xml/edamfu/reorder.py create mode 100644 edamfu-xml/edamfu/reorder_lxml.py create mode 100644 edamfu-xml/edamfu/tree.py create mode 100644 edamfu-xml/edamfu/utils.py create mode 100644 edamfu-xml/rdflib_for_edamfu.ipynb create mode 100644 edamfu-xml/requirements.txt create mode 100644 edamfu-xml/setup.py create mode 100644 edamfu-xml/tests/EDAM_dev.owl create mode 100644 edamfu-xml/tests/EDAM_dev.robot.owl create mode 100644 edamfu-xml/tests/edamontology.org.owl create mode 100644 edamfu-xml/tests/edamontology.org.robot.owl create mode 100644 edamfu-xml/tests/output.xml create mode 100644 edamfu-xml/tests/test_core.py create mode 100644 edamfu/.vscode/settings.json create mode 100644 edamfu/tests/test_diff.py diff --git a/edamfu-xml/edamfu/__init__.py b/edamfu-xml/edamfu/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/edamfu-xml/edamfu/cli.py b/edamfu-xml/edamfu/cli.py new file mode 100644 index 0000000..e69de29 diff --git a/edamfu-xml/edamfu/core.py b/edamfu-xml/edamfu/core.py new file mode 100644 index 0000000..efbb003 --- /dev/null +++ b/edamfu-xml/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-xml/edamfu/reorder.py b/edamfu-xml/edamfu/reorder.py new file mode 100644 index 0000000..6cc9d7f --- /dev/null +++ b/edamfu-xml/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-xml/edamfu/reorder_lxml.py b/edamfu-xml/edamfu/reorder_lxml.py new file mode 100644 index 0000000..81109c4 --- /dev/null +++ b/edamfu-xml/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-xml/requirements.txt b/edamfu-xml/requirements.txt new file mode 100644 index 0000000..bbbc5e5 --- /dev/null +++ b/edamfu-xml/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-xml/setup.py b/edamfu-xml/setup.py new file mode 100644 index 0000000..34c0b4c --- /dev/null +++ b/edamfu-xml/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-xml/tests/EDAM_dev.owl b/edamfu-xml/tests/EDAM_dev.owl new file mode 100644 index 0000000..012e3c5 --- /dev/null +++ b/edamfu-xml/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-xml/tests/EDAM_dev.robot.owl b/edamfu-xml/tests/EDAM_dev.robot.owl new file mode 100644 index 0000000..a7f48c6 --- /dev/null +++ b/edamfu-xml/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-xml/tests/edamontology.org.owl b/edamfu-xml/tests/edamontology.org.owl new file mode 100644 index 0000000..af5b2c7 --- /dev/null +++ b/edamfu-xml/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-xml/tests/edamontology.org.robot.owl b/edamfu-xml/tests/edamontology.org.robot.owl new file mode 100644 index 0000000..397094e --- /dev/null +++ b/edamfu-xml/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-xml/tests/output.xml b/edamfu-xml/tests/output.xml new file mode 100644 index 0000000..793a6cb --- /dev/null +++ b/edamfu-xml/tests/output.xml @@ -0,0 +1,2 @@ + +Text with ' \ No newline at end of file diff --git a/edamfu-xml/tests/test_core.py b/edamfu-xml/tests/test_core.py new file mode 100644 index 0000000..70abd8d --- /dev/null +++ b/edamfu-xml/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/edamfu/.vscode/settings.json b/edamfu/.vscode/settings.json new file mode 100644 index 0000000..e9e6a80 --- /dev/null +++ b/edamfu/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "python.testing.unittestArgs": [ + "-v", + "-s", + "./tests", + "-p", + "test_*.py" + ], + "python.testing.pytestEnabled": false, + "python.testing.unittestEnabled": true +} \ No newline at end of file diff --git a/edamfu/edamfu/cli.py b/edamfu/edamfu/cli.py index e69de29..20db1f8 100644 --- a/edamfu/edamfu/cli.py +++ b/edamfu/edamfu/cli.py @@ -0,0 +1,136 @@ +""" +edamdiff.py +Author: Alban Gaignard +Email: alban.gaignard@univ-nantes.fr +Date: 2023-05-31 +Description: This script compares two RDF files and outputs the differences. + +The MIT License (MIT) +""" + +from rdflib import ConjunctiveGraph +from rdflib.compare import to_isomorphic, graph_diff, to_canonical_graph +from rdflib.util import guess_format +import difflib +import sys + +from rich.progress import Progress +from rich.console import Console + +import click + +_UNSTABLE_EDAM = "https://edamontology.org/EDAM_unstable.owl" +_STABLE_EDAM = "https://edamontology.org/EDAM.owl" + +#kg_ref = ConjunctiveGraph().parse(_STABLE_EDAM) +#to_canonical_graph(kg_ref).serialize("edam_ref.ttl", format="turtle") +#to_canonical_graph(kg_ref).serialize("edam_ref.owl", format="xml") +#sys.exit(0) + +console = Console() + +def reformat_edam_txt(input_file, output_file): + console.print(f"Reformatting {input_file}") + kg = ConjunctiveGraph().parse(input_file) + kg.serialize(format="turtle") + + + +def diff_edam_txt(rdf_1, rdf_2): + console.print(f"Diffing {rdf_1} with {rdf_2}") + with Progress() as progress: + task1 = progress.add_task("[red]Computing diff ...", total=5) + while not progress.finished: + kg_1 = ConjunctiveGraph().parse(rdf_1) + progress.update(task1, advance=1) + progress.refresh() + + kg_2 = ConjunctiveGraph().parse(rdf_2) + progress.update(task1, advance=2) + progress.refresh() + + kg_1_ttl = to_canonical_graph(kg_1).serialize(format="turtle") + progress.update(task1, advance=3) + progress.refresh() + + kg_2_ttl = to_canonical_graph(kg_2).serialize(format="turtle") + progress.update(task1, advance=4) + progress.refresh() + + diff_output = difflib.unified_diff(kg_1_ttl.splitlines(keepends=True), kg_2_ttl.splitlines(keepends=True), n=3) + progress.update(task1, advance=5) + progress.refresh() + + for line in diff_output: + if line.startswith("+"): + console.print("[green]"+line.strip()) + elif line.startswith("-"): + console.print("[red]"+line.strip()) + else: + console.print("[white]"+line.strip()) + + + #_ , in_first, in_second = graph_diff(kg_1, kg_2) + #console.print("[bold]In first version:") + #console.print(in_first.serialize(format="turtle")) + #console.print("[bold]In second version:") + #console.print(in_second.serialize(format="turtle")) + +@click.command() +@click.option('--src', required=True, help='your input EDAM ontology.') +@click.option('--ref', required=True, help='the reference EDAM ontology.') +def diff_command(src, ref): + """Simple program that prints a diff between two EDAM ontologies.""" + console.print("[bold]EDAM Diff Tool") + console.print("[bold]-----------------") + + guess_format('src') + diff_edam_txt(src, ref) + +@click.command("black") +@click.option('--check', is_flag=True, help='...') +@click.option('--diff', is_flag=True, help='...') +@click.argument('filename', type=click.Path(exists=True)) +def black_command(check, diff, filename): + """Simple program that prints a diff between two EDAM ontologies.""" + #console.print("[bold]EDAM Diff Tool") + #console.print("[bold]-----------------") + + rdf_format = guess_format(filename) + console.print(f"{filename} format: {rdf_format}") + if not rdf_format in ["xml", "turtle"]: + exit(1) + else: + console.print(f"Checking {filename}") + with open(filename, "r") as f: + content = f.readlines() + kg = ConjunctiveGraph().parse(filename) + kg_normalized_txt = to_canonical_graph(kg).serialize(format=rdf_format) + + diff_output = difflib.unified_diff(content, kg_normalized_txt.splitlines(keepends=True), n=3) + + #if check: + #console.print("[bold]Checking "+filename) + #console.print(f"{len(list(diff_output))} differences found") + + if diff: + console.print("[bold]Diff "+filename) + for line in diff_output: + if line.startswith("+"): + console.print("[green]"+line.strip()) + elif line.startswith("-"): + console.print("[red]"+line.strip()) + else: + console.print("[white]"+line.strip()) + + #diff_edam_txt(src, ref) + +@click.group() +def entry_point(): + pass + +entry_point.add_command(black_command) +entry_point.add_command(diff_command) + +if __name__ == '__main__': + entry_point() \ No newline at end of file diff --git a/edamfu/requirements.txt b/edamfu/requirements.txt index bbbc5e5..d5c64ae 100644 --- a/edamfu/requirements.txt +++ b/edamfu/requirements.txt @@ -1,99 +1 @@ -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 +rdflib==7.0.0 \ No newline at end of file diff --git a/edamfu/tests/test_diff.py b/edamfu/tests/test_diff.py new file mode 100644 index 0000000..2f47aab --- /dev/null +++ b/edamfu/tests/test_diff.py @@ -0,0 +1,60 @@ + +import unittest + + +class DiffTestCase(unittest.TestCase): + + ref = """ +@prefix ns1: . +@prefix ns2: . +@prefix owl: . +@prefix rdfs: . + +ns2:data_0852 a owl:Class ; + rdfs:label "Sequence mask type" ; + ns2:created_in "beta12orEarlier" ; + ns2:obsolete_since "1.5" ; + ns1:consider ns2:data_0842 ; + ns1:hasDefinition "A label (text token) describing the type of sequence masking to perform." ; + ns1:inSubset ; + 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" . + +ns2:data_0853 a owl:Class ; + rdfs:label "DNA sense specification" ; + ns2:created_in "beta12orEarlier" ; + ns2:obsolete_since "1.20" ; + ns2:oldParent ns2:data_2534 ; + ns1:consider ns2:data_2534 ; + ns1:hasDefinition "The strand of a DNA sequence (forward or reverse)." ; + ns1:inSubset ; + 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" . + """ + + # @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_reordered_classes(self): + print("test_reordered_classes") + + +if __name__ == "__main__": + unittest.main() \ No newline at end of file diff --git a/src/edam_mod.ttl b/src/edam_mod.ttl index 6b30c64..c5ffb91 100644 --- a/src/edam_mod.ttl +++ b/src/edam_mod.ttl @@ -1,25 +1,24 @@ -@prefix : . @prefix dc: . @prefix doap: . -@prefix edam: . @prefix foaf: . -@prefix oboInOwl: . -@prefix oboOther: . +@prefix ns1: . +@prefix ns2: . +@prefix ns3: . +@prefix ns4: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . -@prefix xsd: . a owl:Ontology ; - :next_id "4010" ; - oboOther:date "18.06.2020 09:15 UTC" ; - oboOther:idspace "EDAM http://edamontology.org/ \"EDAM relations and concept properties\"", + ns1:next_id "4010" ; + ns3:date "18.06.2020 09:15 UTC" ; + ns3:idspace "EDAM http://edamontology.org/ \"EDAM relations and concept properties\"", "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\"" ; - oboOther:remark "EDAM editors: Jon Ison, Matúš Kalaš, Hervé Ménager, and Veit Schwämmle. Contributors: see http://edamontologydocs.readthedocs.io/en/latest/contributors.html. License: see http://edamontologydocs.readthedocs.io/en/latest/license.html.", + ns3:remark "EDAM editors: Jon Ison, Matúš Kalaš, Hervé Ménager, and Veit Schwämmle. Contributors: see http://edamontologydocs.readthedocs.io/en/latest/contributors.html. License: see http://edamontologydocs.readthedocs.io/en/latest/license.html.", "EDAM is an ontology of well established, familiar concepts that are prevalent within bioinformatics, including types of data and data identifiers, data formats, operations and topics. EDAM is a simple ontology - essentially a set of terms with synonyms and definitions - organised into an intuitive hierarchy for convenient use by curators, software developers and end-users. EDAM is suitable for large-scale semantic annotations and categorisation of diverse bioinformatics resources. EDAM is also suitable for diverse application including for example within workbenches and workflow-management systems, software distributions, and resource registries." ; dc:contributor "Veit Schwämmle" ; dc:creator "Hervé Ménager", @@ -28,7 +27,7 @@ dc:format "application/rdf+xml" ; dc:title "Bioinformatics operations, data types, formats, identifiers and topics" ; doap:Version "1.25" ; - oboInOwl:hasSubset "concept_properties \"EDAM concept properties\"", + ns2:hasSubset "concept_properties \"EDAM concept properties\"", "data \"EDAM types of data\"", "edam \"EDAM\"", "formats \"EDAM data formats\"", @@ -36,15539 +35,15537 @@ "operations \"EDAM operations\"", "relations \"EDAM relations\"", "topics \"EDAM topics\"" ; - oboInOwl:savedBy "Jon Ison, Matúš Kalaš, Hervé Ménager" ; - rdfs:isDefinedBy :EDAM.owl ; - foaf:page :page . + ns2:savedBy "Jon Ison, Matúš Kalaš, Hervé Ménager" ; + rdfs:isDefinedBy ns1:EDAM.owl ; + foaf:page ns1:page . -:citation a owl:AnnotationProperty ; +ns1:citation a owl:AnnotationProperty ; rdfs:label "Citation" ; - :created_in "1.13" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasBroadSynonym "Publication reference" ; - oboInOwl:hasDefinition "'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferrably including a DOI, pointing to a citeable publication of the given data format." ; - oboInOwl:hasRelatedSynonym "Publication" ; - oboInOwl:inSubset "concept_properties" . - -:created_in a owl:AnnotationProperty ; + ns1:created_in "1.13" ; + ns3:is_metadata_tag "true" ; + ns2:hasBroadSynonym "Publication reference" ; + ns2:hasDefinition "'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferrably including a DOI, pointing to a citeable publication of the given data format." ; + ns2:hasRelatedSynonym "Publication" ; + ns2:inSubset "concept_properties" . + +ns1:created_in a owl:AnnotationProperty ; rdfs:label "Created in" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "Version in which a concept was created." ; - oboInOwl:inSubset "concept_properties" . - + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Version in which a concept was created." ; + ns2:inSubset "concept_properties" . -:data_0007 a owl:Class ; - rdfs:label "Tool" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A bioinformatics package or tool, e.g. a standalone application or web service." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0958 ; +ns1:data_0005 a owl:Class ; + rdfs:label "Resource type" ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "A type of computational resource used in bioinformatics." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . - -:data_0005 a owl:Class ; - rdfs:label "Resource type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "A type of computational resource used in bioinformatics." ; - oboInOwl:inSubset edam:obsolete ; +ns1:data_0007 a owl:Class ; + rdfs:label "Tool" ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A bioinformatics package or tool, e.g. a standalone application or web service." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0958 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0581 a owl:Class ; +ns1:data_0581 a owl:Class ; rdfs:label "Database" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0957 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0957 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0583 a owl:Class ; +ns1:data_0583 a owl:Class ; rdfs:label "Directory metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "A directory on my disk from which files are read." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "A directory on disk from which files are read." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0831 a owl:Class ; +ns1:data_0831 a owl:Class ; rdfs:label "MeSH vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0832 a owl:Class ; +ns1:data_0832 a owl:Class ; rdfs:label "HGNC vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0582 ; - oboInOwl:hasDefinition "Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0835 a owl:Class ; +ns1:data_0835 a owl:Class ; rdfs:label "UMLS vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0582 ; - oboInOwl:hasDefinition "Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0843 a owl:Class ; +ns1:data_0843 a owl:Class ; rdfs:label "Database entry" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "An entry (retrievable via URL) from a biological database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "An entry (retrievable via URL) from a biological database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0844 a owl:Class ; +ns1:data_0844 a owl:Class ; rdfs:label "Molecular mass" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mass of a molecule." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mass of a molecule." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . -:data_0845 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . - -:data_0851 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "PDBML:pdbx_formal_charge" ; + ns2:hasDefinition "Net charge of a molecule." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . + +ns1:data_0851 a owl:Class ; rdfs:label "Sequence mask character" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "A character used to replace (mask) other characters in a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "A character used to replace (mask) other characters in a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0852 a owl:Class ; +ns1:data_0852 a owl:Class ; rdfs:label "Sequence mask type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of sequence masking to perform." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of sequence masking to perform." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:data_2534 ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "The strand of a DNA sequence (forward or reverse)." ; + ns2:inSubset ns4: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 ; +ns1:data_0854 a owl:Class ; rdfs:label "Sequence length specification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "A specification of sequence length(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "A specification of sequence length(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0855 a owl:Class ; +ns1:data_0855 a owl:Class ; rdfs:label "Sequence metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2955 ; - oboInOwl:hasDefinition "Basic or general information concerning molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2955 ; + ns2:hasDefinition "Basic or general information concerning molecular sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2914 . -:data_0859 a owl:Class ; +ns1:data_0859 a owl:Class ; rdfs:label "Sequence signature model" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "Data files used by motif or profile methods." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "Data files used by motif or profile methods." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0861 a owl:Class ; +ns1:data_0861 a owl:Class ; rdfs:label "Sequence alignment (words)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of exact matches between subsequences (words) within two or more molecular sequences." ; - oboInOwl:hasExactSynonym "Sequence word alignment" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of exact matches between subsequences (words) within two or more molecular sequences." ; + ns2:hasExactSynonym "Sequence word alignment" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0864 a owl:Class ; +ns1:data_0864 a owl:Class ; rdfs:label "Sequence alignment parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Some simple value controlling a sequence alignment (or similar 'match') operation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Some simple value controlling a sequence alignment (or similar 'match') operation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0866 a owl:Class ; +ns1:data_0866 a owl:Class ; rdfs:label "Sequence alignment metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0868 a owl:Class ; +ns1: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." ; - :oldParent :data_1916 ; - oboInOwl:hasDefinition "A profile-profile alignment (each profile typically representing a sequence alignment)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta12orEarlier" ; + ns1: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." ; + ns1:oldParent ns1:data_1916 ; + ns2:hasDefinition "A profile-profile alignment (each profile typically representing a sequence alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:data_0869 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta12orEarlier" ; + ns1: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." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:data_1916 ; + ns2:hasDefinition "Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:data_0875 a owl:Class ; +ns1:data_0875 a owl:Class ; rdfs:label "Protein topology" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Predicted or actual protein topology represented as a string of protein secondary structure elements." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Predicted or actual protein topology represented as a string of protein secondary structure elements." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_0876 a owl:Class ; rdfs:label "Protein features report (secondary structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Secondary structure (predicted or real) of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Secondary structure (predicted or real) of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0877 a owl:Class ; +ns1:data_0877 a owl:Class ; rdfs:label "Protein features report (super-secondary)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Super-secondary structure of protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Super-secondary structure of protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_0879 a owl:Class ; rdfs:label "Secondary structure alignment metadata (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0882 a owl:Class ; +ns1:data_0882 a owl:Class ; rdfs:label "Secondary structure alignment metadata (RNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "An informative report of RNA secondary structure alignment-derived data or metadata." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "An informative report of RNA secondary structure alignment-derived data or metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0884 a owl:Class ; +ns1:data_0884 a owl:Class ; rdfs:label "Tertiary structure record" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0883 ; - oboInOwl:hasDefinition "An entry from a molecular tertiary (3D) structure database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0883 ; + ns2:hasDefinition "An entry from a molecular tertiary (3D) structure database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0885 a owl:Class ; +ns1:data_0885 a owl:Class ; rdfs:label "Structure database search results" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_2080 ; - oboInOwl:hasDefinition "Results (hits) from searching a database of tertiary structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_2080 ; + ns2:hasDefinition "Results (hits) from searching a database of tertiary structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0890 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1916 . - -:data_0891 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A 3D profile-3D profile alignment (each profile representing structures or a structure alignment)." ; + ns2:hasExactSynonym "Structural profile alignment" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1916 . + +ns1:data_0891 a owl:Class ; rdfs:label "Sequence-3D profile alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0893 ; - oboInOwl:hasDefinition "An alignment of a sequence to a 3D profile (representing structures or a structure alignment)." ; - oboInOwl:hasExactSynonym "Sequence-structural profile alignment" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0893 ; + ns2:hasDefinition "An alignment of a sequence to a 3D profile (representing structures or a structure alignment)." ; + ns2:hasExactSynonym "Sequence-structural profile alignment" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0894 a owl:Class ; +ns1:data_0894 a owl:Class ; rdfs:label "Amino acid annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific amino acid." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific amino acid." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0895 a owl:Class ; +ns1:data_0895 a owl:Class ; rdfs:label "Peptide annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific peptide." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific peptide." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0899 a owl:Class ; +ns1:data_0899 a owl:Class ; rdfs:label "Protein structural motifs and surfaces" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "3D structural motifs in a protein." ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "3D structural motifs in a protein." ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0900 a owl:Class ; +ns1:data_0900 a owl:Class ; rdfs:label "Protein domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0901 a owl:Class ; +ns1:data_0901 a owl:Class ; rdfs:label "Protein features report (domains)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "structural domains or 3D folds in a protein or polypeptide chain." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "structural domains or 3D folds in a protein or polypeptide chain." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0902 a owl:Class ; +ns1:data_0902 a owl:Class ; rdfs:label "Protein architecture report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "An informative report on architecture (spatial arrangement of secondary structure) of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "An informative report on architecture (spatial arrangement of secondary structure) of a protein structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0903 a owl:Class ; +ns1:data_0903 a owl:Class ; rdfs:label "Protein folding report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_1537 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1537 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0904 a owl:Class ; +ns1:data_0904 a owl:Class ; rdfs:label "Protein features (mutation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "Data on the effect of (typically point) mutation on protein folding, stability, structure and function." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "Data on the effect of (typically point) mutation on protein folding, stability, structure and function." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_3108 . -:data_0909 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_0910 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_0911 a owl:Class ; +ns1:data_0911 a owl:Class ; rdfs:label "Nucleotide base annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific nucleotide base." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific nucleotide base." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0917 a owl:Class ; +ns1:data_0917 a owl:Class ; rdfs:label "Gene classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0918 a owl:Class ; +ns1:data_0918 a owl:Class ; rdfs:label "DNA variation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "stable, naturally occuring 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 edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "stable, naturally occuring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0923 a owl:Class ; +ns1:data_0923 a owl:Class ; rdfs:label "PCR experiment report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0926 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Radiation hybrid scores (RH) scores for one or more markers." ; + ns2:hasExactSynonym "Radiation Hybrid (RH) scores" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping." ; - rdfs:subClassOf :data_3108 . + rdfs:subClassOf ns1:data_3108 . -:data_0931 a owl:Class ; +ns1:data_0931 a owl:Class ; rdfs:label "Microarray experiment report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "microarray experiments including conditions, protocol, sample:data relationships etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "microarray experiments including conditions, protocol, sample:data relationships etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0932 a owl:Class ; +ns1:data_0932 a owl:Class ; rdfs:label "Oligonucleotide probe data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2717 ; - oboInOwl:hasDefinition "Data on oligonucleotide probes (typically for use with DNA microarrays)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2717 ; + ns2:hasDefinition "Data on oligonucleotide probes (typically for use with DNA microarrays)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0933 a owl:Class ; +ns1:data_0933 a owl:Class ; rdfs:label "SAGE experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2535 ; - oboInOwl:hasDefinition "Output from a serial analysis of gene expression (SAGE) experiment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2535 ; + ns2:hasDefinition "Output from a serial analysis of gene expression (SAGE) experiment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0934 a owl:Class ; +ns1:data_0934 a owl:Class ; rdfs:label "MPSS experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2535 ; - oboInOwl:hasDefinition "Massively parallel signature sequencing (MPSS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2535 ; + ns2:hasDefinition "Massively parallel signature sequencing (MPSS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0935 a owl:Class ; +ns1:data_0935 a owl:Class ; rdfs:label "SBS experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2535 ; - oboInOwl:hasDefinition "Sequencing by synthesis (SBS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2535 ; + ns2:hasDefinition "Sequencing by synthesis (SBS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0936 a owl:Class ; +ns1:data_0936 a owl:Class ; rdfs:label "Sequence tag profile (with gene assignment)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.14" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_2535 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.14" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2535 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0937 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2537 . - -:data_0938 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Protein X-ray crystallographic data" ; + ns2:hasDefinition "X-ray crystallography data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2537 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2537 . - -:data_0939 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Nuclear magnetic resonance (NMR) raw data, typically for a protein." ; + ns2:hasNarrowSynonym "Protein NMR data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2537 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data." ; + ns2:hasExactSynonym "CD spectrum", "Protein circular dichroism (CD) spectroscopic data" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2537 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2537 . -:data_0940 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Volume map data from electron microscopy." ; + ns2:hasExactSynonym "3D volume map", "EM volume map", "Electron microscopy volume map" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3108 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3108 . -:data_0941 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_3806 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:data_0883 ; + ns2:hasDefinition "Annotation on a structural 3D model (volume map) from electron microscopy." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3806 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0942 a owl:Class ; +ns1:data_0942 a owl:Class ; rdfs:label "2D PAGE image" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Two-dimensional gel electrophoresis image" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Two-dimensional gel electrophoresis image" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_3424 . -:data_0945 a owl:Class ; +ns1: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'", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "'Protein identification'", "Peptide spectrum match" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_0897, - :data_2979 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_0897, + ns1:data_2979 . -:data_0946 a owl:Class ; +ns1:data_0946 a owl:Class ; rdfs:label "Pathway or network annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2984 ; + ns2:hasDefinition "An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0947 a owl:Class ; +ns1:data_0947 a owl:Class ; rdfs:label "Biological pathway map" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2600 ; - oboInOwl:hasDefinition "A map (typically a diagram) of a biological pathway." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2600 ; + ns2:hasDefinition "A map (typically a diagram) of a biological pathway." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0948 a owl:Class ; +ns1:data_0948 a owl:Class ; rdfs:label "Data resource definition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1883 ; + ns2:hasDefinition "A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0952 a owl:Class ; +ns1:data_0952 a owl:Class ; rdfs:label "EMBOSS database resource definition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "Resource definition for an EMBOSS database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "Resource definition for an EMBOSS database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0953 a owl:Class ; +ns1:data_0953 a owl:Class ; rdfs:label "Version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Information on a version of software or data, for example name, version number and release date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Information on a version of software or data, for example name, version number and release date." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information concerning an analysis of an index of biological data." ; + ns2:hasExactSynonym "Database index annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3489 ], - :data_2048 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3489 ], + ns1:data_2048 . -:data_0959 a owl:Class ; +ns1:data_0959 a owl:Class ; rdfs:label "Job metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Textual metadata on a submitted or completed job." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Textual metadata on a submitted or completed job." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0960 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Textual metadata on a software author or end-user, for example a person or other software." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_0964 a owl:Class ; +ns1:data_0964 a owl:Class ; rdfs:label "Scent annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific scent." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific scent." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0974 a owl:Class ; +ns1:data_0974 a owl:Class ; rdfs:label "Entity identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "An identifier of a biological entity or phenomenon." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "An identifier of a biological entity or phenomenon." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0975 a owl:Class ; +ns1:data_0975 a owl:Class ; rdfs:label "Data resource identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "An identifier of a data resource." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "An identifier of a data resource." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0978 a owl:Class ; +ns1:data_0978 a owl:Class ; rdfs:label "Discrete entity identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0979 a owl:Class ; +ns1:data_0979 a owl:Class ; rdfs:label "Entity feature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0980 a owl:Class ; +ns1:data_0980 a owl:Class ; rdfs:label "Entity collection identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "Name or other identifier of a collection of discrete biological entities." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Name or other identifier of a collection of discrete biological entities." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0981 a owl:Class ; +ns1:data_0981 a owl:Class ; rdfs:label "Phenomenon identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "Name or other identifier of a physical, observable biological occurrence or event." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Name or other identifier of a physical, observable biological occurrence or event." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0985 a owl:Class ; +ns1:data_0985 a owl:Class ; rdfs:label "Molecule type" ; - :created_in "beta12orEarlier" ; - :example "Protein|DNA|RNA" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type a molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "Protein|DNA|RNA" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type a molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "For example, 'Protein', 'DNA', 'RNA' etc." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0986 a owl:Class ; +ns1:data_0986 a owl:Class ; rdfs:label "Chemical identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1086 ; - oboInOwl:hasDefinition "Unique identifier of a chemical compound." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1086 ; + ns2:hasDefinition "Unique identifier of a chemical compound." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0992 a owl:Class ; +ns1:data_0992 a owl:Class ; rdfs:label "Ligand identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1086 ; - oboInOwl:hasDefinition "Code word for a ligand, for example from a PDB file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1086 ; + ns2:hasDefinition "Code word for a ligand, for example from a PDB file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0997 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound." ; + ns2:hasExactSynonym "ChEBI chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "This is the recommended chemical name for use for example in database annotation." ; - rdfs:subClassOf :data_0990 . + rdfs:subClassOf ns1:data_0990 . -:data_0998 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_0999 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "IUPAC recommended name of a chemical compound." ; + ns2:hasExactSynonym "IUPAC chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_1000 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO)." ; + ns2:hasExactSynonym "INN chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_1001 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Brand name of a chemical compound." ; + ns2:hasExactSynonym "Brand chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_1003 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Synonymous name of a chemical compound." ; + ns2:hasExactSynonym "Synonymous chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0991, - :data_2091 . - -:data_1004 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Beilstein registry number of a chemical compound." ; + ns2:hasExactSynonym "Beilstein chemical registry number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0991, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0991, - :data_2091 . - -:data_1005 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Gmelin registry number of a chemical compound." ; + ns2:hasExactSynonym "Gmelin chemical registry number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0991, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3-letter code word for a ligand (HET group) from a PDB file, for example ATP." ; + ns2:hasExactSynonym "Component identifier code", "Short ligand name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . -:data_1007 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990, - :data_0995 . - -:data_1008 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "String of one or more ASCII characters representing a nucleotide." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990, + ns1:data_0995 . + +ns1:data_1008 a owl:Class ; rdfs:label "Polypeptide chain ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_strand_id", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "PDBML:pdbx_PDB_strand_id", "WHATIF: chain" ; - oboInOwl:hasDefinition "Identifier of a polypeptide chain from a protein." ; - oboInOwl:hasExactSynonym "Chain identifier", + ns2:hasDefinition "Identifier of a polypeptide chain from a protein." ; + ns2:hasExactSynonym "Chain identifier", "PDB chain identifier", "PDB strand id", "Polypeptide chain identifier", "Protein chain identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1467 ], + ns1:data_0988 . -:data_1011 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+\\.-\\.-\\.-|[0-9]+\\.[0-9]+\\.-\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" ; + ns2:hasDbXref "Moby:Annotated_EC_Number", "Moby:EC_Number" ; - oboInOwl:hasDefinition "An Enzyme Commission (EC) number of an enzyme." ; - oboInOwl:hasExactSynonym "EC", + ns2:hasDefinition "An Enzyme Commission (EC) number of an enzyme." ; + ns2:hasExactSynonym "EC", "EC code", "Enzyme Commission number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . -:data_1013 a owl:Class ; +ns1:data_1013 a owl:Class ; rdfs:label "Restriction enzyme name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a restriction enzyme." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1012 . - -:data_1014 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a restriction enzyme." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1012 . + +ns1:data_1014 a owl:Class ; rdfs:label "Sequence position specification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1016 ; + ns2:hasDefinition "A specification (partial or complete) of one or more positions or regions of a molecular sequence or map." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1018 a owl:Class ; +ns1:data_1018 a owl:Class ; rdfs:label "Nucleic acid feature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1015 ; - oboInOwl:hasDefinition "Name or other identifier of an nucleic acid feature." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1015 ; + ns2:hasDefinition "Name or other identifier of an nucleic acid feature." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1019 a owl:Class ; +ns1:data_1019 a owl:Class ; rdfs:label "Protein feature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1015 ; - oboInOwl:hasDefinition "Name or other identifier of a protein feature." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1015 ; + ns2:hasDefinition "Name or other identifier of a protein feature." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1020 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence feature method", "Sequence feature type" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2914 . -:data_1021 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Typically one of the EMBL or Swiss-Prot feature qualifiers." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Feature qualifiers hold information about a feature beyond that provided by the feature key and location." ; - rdfs:subClassOf :data_2914 . + rdfs:subClassOf ns1:data_2914 . -:data_1023 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2099, - :data_3034 . - -:data_1024 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications." ; + ns2:hasExactSynonym "UFO" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3034 . + +ns1:data_1024 a owl:Class ; rdfs:label "Codon name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1276 ; - oboInOwl:hasDefinition "String of one or more ASCII characters representing a codon." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "String of one or more ASCII characters representing a codon." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1028 a owl:Class ; +ns1:data_1028 a owl:Class ; rdfs:label "Gene identifier (NCBI RefSeq)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1027 ; - oboInOwl:hasDefinition "An NCBI RefSeq unique identifier of a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1027 ; + ns2:hasDefinition "An NCBI RefSeq unique identifier of a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1029 a owl:Class ; +ns1:data_1029 a owl:Class ; rdfs:label "Gene identifier (NCBI UniGene)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1104 ; - oboInOwl:hasDefinition "An NCBI UniGene unique identifier of a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1104 ; + ns2:hasDefinition "An NCBI UniGene unique identifier of a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1030 a owl:Class ; +ns1:data_1030 a owl:Class ; rdfs:label "Gene identifier (Entrez)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "[0-9]+" ; - oboInOwl:consider :data_1027 ; - oboInOwl:hasDefinition "An Entrez unique identifier of a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:consider ns1:data_1027 ; + ns2:hasDefinition "An Entrez unique identifier of a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1031 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1032 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a gene or feature from the CGD database." ; + ns2:hasExactSynonym "CGD ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1032 a owl:Class ; rdfs:label "Gene ID (DictyBase)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of a gene from DictyBase." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1033 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a gene from DictyBase." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295, - :data_2610 . - -:data_1034 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a gene (or other feature) from the Ensembl database." ; + ns2:hasExactSynonym "Gene ID (Ensembl)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295, + ns1:data_2610 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295, - :data_2632 . - -:data_1036 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "S[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the SGD database." ; + ns2:hasExactSynonym "SGD identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295, + ns1:data_2632 . + +ns1:data_1036 a owl:Class ; rdfs:label "TIGR identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the TIGR database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109, - :data_2295 . - -:data_1040 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the TIGR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2700 . - -:data_1041 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "1nr3A00" ; + ns2:hasDefinition "Identifier of a protein domain from CATH." ; + ns2:hasExactSynonym "CATH domain identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2700 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1039 . -:data_1042 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "33229" ; + ns2:hasDefinition "Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229." ; + ns2:hasExactSynonym "SCOP unique identifier", "sunid" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1039 . -:data_1044 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1045 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1049 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a species (typically a taxonomic group) of organism." ; + ns2:hasExactSynonym "Organism species" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1:data_1049 a owl:Class ; rdfs:label "Directory name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a directory." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_1051 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a directory." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0582 ], - :data_2099, - :data_2338 . - -:data_1052 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an ontology of biological or bioinformatics concepts and relations." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0582 ], + ns1:data_2099, + ns1:data_2338 . + +ns1:data_1052 a owl:Class ; rdfs:label "URL" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:Link", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Link", "Moby:URL" ; - oboInOwl:hasDefinition "A Uniform Resource Locator (URL)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1047 . + ns2:hasDefinition "A Uniform Resource Locator (URL)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1047 . -:data_1055 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A Life Science Identifier (LSID) - a unique identifier of some data." ; + ns2:hasExactSynonym "Life Science Identifier" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1053 . -:data_1057 a owl:Class ; +ns1:data_1057 a owl:Class ; rdfs:label "Sequence database name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1056 ; - oboInOwl:hasDefinition "The name of a molecular sequence database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1056 ; + ns2:hasDefinition "The name of a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1058 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1050 . - -:data_1059 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a file (of any type) with restricted possible values." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1050 . + +ns1:data_1059 a owl:Class ; rdfs:label "File name extension" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The extension of a file name." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The extension of a file name." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A file extension is the characters appearing after the final '.' in the file name." ; - rdfs:subClassOf :data_1050 . + rdfs:subClassOf ns1:data_1050 . -:data_1060 a owl:Class ; +ns1:data_1060 a owl:Class ; rdfs:label "File base name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The base name of a file." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The base name of a file." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A file base name is the file name stripped of its directory specification and extension." ; - rdfs:subClassOf :data_1050 . + rdfs:subClassOf ns1:data_1050 . -:data_1061 a owl:Class ; +ns1:data_1061 a owl:Class ; rdfs:label "QSAR descriptor name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a QSAR descriptor." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0847 ], - :data_2099, - :data_2110 . - -:data_1062 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a QSAR descriptor." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0847 ], + ns1:data_2099, + ns1:data_2110 . + +ns1:data_1062 a owl:Class ; rdfs:label "Database entry identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type." ; + ns2:inSubset ns4: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 ; +ns1:data_1065 a owl:Class ; rdfs:label "Sequence signature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1114, + ns1:data_1115 ; + ns2:hasDefinition "Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1066 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0863 ], - :data_0976, - :data_2091 . - -:data_1067 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a molecular sequence alignment, for example a record from an alignment database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0863 ], + ns1:data_0976, + ns1:data_2091 . + +ns1:data_1067 a owl:Class ; rdfs:label "Phylogenetic distance matrix identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0976 ; - oboInOwl:hasDefinition "Identifier of a phylogenetic distance matrix." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0976 ; + ns2:hasDefinition "Identifier of a phylogenetic distance matrix." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1071 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0889 ], - :data_0976 . - -:data_1076 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment)." ; + ns2:hasExactSynonym "Structural profile identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0889 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1598 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name of a codon usage table." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1597 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1597 ], - :data_2099, - :data_2111 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1598 ], + ns1:data_2099, + ns1:data_2111 . -:data_1091 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2113 . - -:data_1092 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an object from the WormBase database, usually a human-readable name." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2113 . + +ns1:data_1092 a owl:Class ; rdfs:label "WormBase class" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Class of an object from the WormBase database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Class of an object from the WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A WormBase class describes the type of object such as 'sequence' or 'protein'." ; - rdfs:subClassOf :data_2113 . + rdfs:subClassOf ns1:data_2113 . -:data_1094 a owl:Class ; +ns1:data_1094 a owl:Class ; rdfs:label "Sequence type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing a type of molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing a type of molecular sequence." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1063, - :data_2099 . - -:data_1099 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications." ; + ns2:hasExactSynonym "EMBOSS USA" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1063, + ns1:data_2099 . + +ns1:data_1099 a owl:Class ; rdfs:label "UniProt accession (extended)" ; - :created_in "beta12orEarlier" ; - :example "Q7M1G0|P43353-2|P01012.107" ; - :obsolete_since "1.0" ; - :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]|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9].[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9].[0-9]+|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9]-[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]-[0-9]+" ; - oboInOwl:consider :data_3021 ; - oboInOwl:hasDefinition "Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "Q7M1G0|P43353-2|P01012.107" ; + ns1:obsolete_since "1.0" ; + ns1: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]|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9].[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9].[0-9]+|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9]-[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]-[0-9]+" ; + ns2:consider ns1:data_3021 ; + ns2:hasDefinition "Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1100 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of PIR sequence database entry." ; + ns2:hasExactSynonym "PIR ID", "PIR accession number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . -:data_1101 a owl:Class ; +ns1:data_1101 a owl:Class ; rdfs:label "TREMBL accession" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.2" ; - oboInOwl:hasDefinition "Identifier of a TREMBL sequence database entry." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_3021 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.2" ; + ns2:hasDefinition "Identifier of a TREMBL sequence database entry." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3021 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1102 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2915 . - -:data_1105 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Primary identifier of a Gramene database entry." ; + ns2:hasExactSynonym "Gramene primary ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2915 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2292, - :data_2728 . - -:data_1106 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a dbEST database entry." ; + ns2:hasExactSynonym "dbEST ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2292, + ns1:data_2728 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_1110 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a dbSNP database entry." ; + ns2:hasExactSynonym "dbSNP identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1:data_1110 a owl:Class ; rdfs:label "EMBOSS sequence type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "The EMBOSS type of a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "The EMBOSS type of a molecular sequence." ; + ns2:inSubset ns4: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 ; +ns1:data_1111 a owl:Class ; rdfs:label "EMBOSS listfile" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2872 ; - oboInOwl:hasDefinition "List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2872 ; + ns2:hasDefinition "List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1113 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . - -:data_1116 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the COG database." ; + ns2:hasExactSynonym "COG ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1114 . - -:data_1117 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the ELMdb database of protein functional sites." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1114 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1114 . - -:data_1118 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PS[0-9]{5}" ; + ns2:hasDefinition "Accession number of an entry from the Prosite database." ; + ns2:hasExactSynonym "Prosite ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1114 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1364 ], - :data_1115, - :data_2091 . - -:data_1119 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier or name of a HMMER hidden Markov model." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1364 ], + ns1:data_1115, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1115, - :data_2091 . - -:data_1120 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier or name of a profile from the JASPAR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1115, + ns1:data_2091 . + +ns1:data_1120 a owl:Class ; rdfs:label "Sequence alignment type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of a sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of a sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_1121 a owl:Class ; rdfs:label "BLAST sequence alignment type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "The type of a BLAST sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "The type of a BLAST sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1122 a owl:Class ; +ns1:data_1122 a owl:Class ; rdfs:label "Phylogenetic tree type" ; - :created_in "beta12orEarlier" ; - :example "nj|upgmp" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "nj|upgmp" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "For example 'nj', 'upgmp' etc." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1123 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1068, - :data_2091 . - -:data_1124 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the TreeBASE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1068, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1068, - :data_2091 . - -:data_1125 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the TreeFam database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1068, + ns1:data_2091 . + +ns1:data_1125 a owl:Class ; rdfs:label "Comparison matrix type" ; - :created_in "beta12orEarlier" ; - :example "blosum|pam|gonnet|id" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of a comparison matrix." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "blosum|pam|gonnet|id" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of a comparison matrix." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name or identifier of a comparison matrix." ; + ns2:hasExactSynonym "Substitution matrix name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0874 ], + ns1:data_1069, + ns1:data_2099 . -:data_1127 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9][a-zA-Z_0-9]{3}" ; + ns2:hasDefinition "An identifier of an entry from the PDB database." ; + ns2:hasExactSynonym "PDB identifier", "PDBID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 alpha-numeric, 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 . + rdfs:subClassOf ns1:data_1070, + ns1:data_2091 . -:data_1128 a owl:Class ; +ns1:data_1128 a owl:Class ; rdfs:label "AAindex ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the AAindex database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1073, - :data_2091 . - -:data_1129 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the AAindex database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1073, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_1130 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the BIND database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_1132 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "EBI\\-[0-9]+" ; + ns2:hasDefinition "Accession number of an entry from the IntAct database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an InterPro entry, usually indicating the type of protein matches for that entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1355 ], - :data_1131 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1355 ], + ns1:data_1131 . -:data_1134 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1355 ], - :data_1133 . - -:data_1135 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Secondary accession number of an InterPro entry." ; + ns2:hasExactSynonym "InterPro secondary accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1355 ], + ns1:data_1133 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1136 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the Gene3D database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1137 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PIRSF[0-9]{6}" ; + ns2:hasDefinition "Unique identifier of an entry from the PIRSF database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1138 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PR[0-9]{5}" ; + ns2:hasDefinition "The unique identifier of an entry in the PRINTS database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1139 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PF[0-9]{5}" ; + ns2:hasDefinition "Accession number of a Pfam entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1140 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "SM[0-9]{5}" ; + ns2:hasDefinition "Accession number of an entry from the SMART database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1141 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier (number) of a hidden Markov model from the Superfamily database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1142 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; + ns2:hasExactSynonym "TIGRFam accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PD[0-9]+" ; + ns2:hasDefinition "A ProDom domain family accession number." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "ProDom is a protein domain family database." ; - rdfs:subClassOf :data_2091, - :data_2910 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . -:data_1143 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2911 . - -:data_1144 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the TRANSFAC database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2911 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_1145 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[AEP]-[a-zA-Z_0-9]{4}-[0-9]+" ; + ns2:hasDefinition "Accession number of an entry from the ArrayExpress database." ; + ns2:hasExactSynonym "ArrayExpress experiment ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_1146 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "PRIDE experiment accession number." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1079, - :data_2091 . - -:data_1147 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the EMDB electron microscopy database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1079, + ns1:data_2091 . + +ns1:data_1147 a owl:Class ; rdfs:label "GEO accession number" ; - :created_in "beta12orEarlier" ; - :regex "o^GDS[0-9]+" ; - oboInOwl:hasDefinition "Accession number of an entry from the GEO database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_1148 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "o^GDS[0-9]+" ; + ns2:hasDefinition "Accession number of an entry from the GEO database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1:data_1148 a owl:Class ; rdfs:label "GermOnline ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the GermOnline database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_1149 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the GermOnline database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1:data_1149 a owl:Class ; rdfs:label "EMAGE ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the EMAGE database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_1151 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the EMAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1:data_1151 a owl:Class ; rdfs:label "HGVbase ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the HGVbase database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1081, - :data_2091 . - -:data_1152 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the HGVbase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1081, + ns1:data_2091 . + +ns1:data_1152 a owl:Class ; rdfs:label "HIVDB identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "Identifier of an entry from the HIVDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Identifier of an entry from the HIVDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1153 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1081, - :data_2091 . - -:data_1155 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[*#+%^]?[0-9]{6}" ; + ns2:hasDefinition "Identifier of an entry from the OMIM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1081, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1156 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "REACT_[0-9]+(\\.[0-9]+)?" ; + ns2:hasDefinition "Identifier of an entry from the Reactome database." ; + ns2:hasExactSynonym "Reactome ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1:data_1156 a owl:Class ; rdfs:label "Pathway ID (aMAZE)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1082 ; - oboInOwl:hasDefinition "Identifier of an entry from the aMAZE database." ; - oboInOwl:hasExactSynonym "aMAZE ID" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1082 ; + ns2:hasDefinition "Identifier of an entry from the aMAZE database." ; + ns2:hasExactSynonym "aMAZE ID" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1157 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2365 . - -:data_1158 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an pathway from the BioCyc biological pathways database." ; + ns2:hasExactSynonym "BioCyc pathway ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1159 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the INOH database." ; + ns2:hasExactSynonym "INOH identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1160 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the PATIKA database." ; + ns2:hasExactSynonym "PATIKA ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB." ; + ns2:hasExactSynonym "CPDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . -:data_1161 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1162 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PTHR[0-9]{5}" ; + ns2:hasDefinition "Identifier of a biological pathway from the Panther Pathways database." ; + ns2:hasExactSynonym "Panther Pathways ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:example "MIR:00100005" ; + ns1:regex "MIR:[0-9]{8}" ; + ns2:hasDefinition "Unique identifier of a MIRIAM data resource." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_2091, + ns1:data_2902 . -:data_1164 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:example "urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202" ; + ns2:hasDefinition "The URI (URL or URN) of a data entity from the MIRIAM database." ; + ns2:hasExactSynonym "identifiers.org synonym" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_1047, + ns1:data_2091, + ns1:data_2902 . -:data_1166 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A synonymous name of a data type from the MIRIAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A synonymous name for a MIRIAM data type taken from a controlled vocabulary." ; - rdfs:subClassOf :data_1163 . + rdfs:subClassOf ns1:data_1163 . -:data_1167 a owl:Class ; +ns1:data_1167 a owl:Class ; rdfs:label "Taverna workflow ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Unique identifier of a Taverna workflow." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1083, - :data_2091 . - -:data_1170 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a Taverna workflow." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1083, + ns1:data_2091 . + +ns1:data_1170 a owl:Class ; rdfs:label "Biological model name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a biological (mathematical) model." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1085, - :data_2099 . - -:data_1171 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a biological (mathematical) model." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1085, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2891 . - -:data_1172 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(BIOMD|MODEL)[0-9]{10}" ; + ns2:hasDefinition "Unique identifier of an entry from the BioModel database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2891 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2639, - :data_2894 . - -:data_1173 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure." ; + ns2:hasExactSynonym "PubChem compound accession identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2639, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_1174 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the ChemSpider database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "CHEBI:[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the ChEBI database." ; + ns2:hasExactSynonym "ChEBI IDs", "ChEBI identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . -:data_1175 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1177 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the BioPax ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1178 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the MeSH vocabulary." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1179 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the HGNC controlled vocabulary." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "9662|3483|182682" ; + ns1:regex "[1-9][0-9]{0,8}" ; + ns2:hasDefinition "A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database." ; + ns2:hasExactSynonym "NCBI tax ID", "NCBI taxonomy identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091, - :data_2908 . - -:data_1180 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091, + ns1:data_2908 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1181 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the Plant Ontology (PO)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1182 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the UMLS vocabulary." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "FMA:[0-9]+" ; + ns2:hasDefinition "An identifier of a concept from Foundational Model of Anatomy." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . -:data_1183 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1184 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the EMAP mouse ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1185 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the ChEBI ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1186 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the MGED ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the myGrid ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . -:data_1187 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1088, - :data_2091 . - -:data_1188 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "4963447" ; + ns1:regex "[1-9][0-9]{0,8}" ; + ns2:hasDefinition "PubMed unique identifier of an article." ; + ns2:hasExactSynonym "PMID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1088, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1088, - :data_2091 . - -:data_1189 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(doi\\:)?[0-9]{2}\\.[0-9]{4}/.*" ; + ns2:hasDefinition "Digital Object Identifier (DOI) of a published article." ; + ns2:hasExactSynonym "Digital Object Identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1088, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Medline UI (unique identifier) of an article." ; + ns2:hasExactSynonym "Medline unique identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "The use of Medline UI has been replaced by the PubMed unique identifier." ; - rdfs:subClassOf :data_1088, - :data_2091 . + rdfs:subClassOf ns1:data_1088, + ns1:data_2091 . -:data_1191 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The unique name of a signature (sequence classifier) method." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1190 . -:data_1192 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a BLAST tool." ; + ns2:hasExactSynonym "BLAST name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'." ; - rdfs:subClassOf :data_1190 . + rdfs:subClassOf ns1:data_1190 . -:data_1193 a owl:Class ; +ns1:data_1193 a owl:Class ; rdfs:label "Tool name (FASTA)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a FASTA tool." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a FASTA tool." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'." ; - rdfs:subClassOf :data_1190 . + rdfs:subClassOf ns1:data_1190 . -:data_1194 a owl:Class ; +ns1:data_1194 a owl:Class ; rdfs:label "Tool name (EMBOSS)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of an EMBOSS application." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1190 . - -:data_1195 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of an EMBOSS application." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1190 . + +ns1:data_1195 a owl:Class ; rdfs:label "Tool name (EMBASSY package)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of an EMBASSY package." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1190 . - -:data_1201 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of an EMBASSY package." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1190 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1202 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR constitutional descriptor." ; + ns2:hasExactSynonym "QSAR constitutional descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1203 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR electronic descriptor." ; + ns2:hasExactSynonym "QSAR electronic descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1204 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR geometrical descriptor." ; + ns2:hasExactSynonym "QSAR geometrical descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1205 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR topological descriptor." ; + ns2:hasExactSynonym "QSAR topological descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1236 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR molecular descriptor." ; + ns2:hasExactSynonym "QSAR molecular descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1:data_1236 a owl:Class ; rdfs:label "Psiblast checkpoint file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration." ; + ns2:inSubset ns4: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 ; +ns1:data_1237 a owl:Class ; rdfs:label "HMMER synthetic sequences set" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "Sequences generated by HMMER package in FASTA-style format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "Sequences generated by HMMER package in FASTA-style format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1241 a owl:Class ; +ns1:data_1241 a owl:Class ; rdfs:label "vectorstrip cloning vector definition file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1242 a owl:Class ; +ns1:data_1242 a owl:Class ; rdfs:label "Primer3 internal oligo mishybridizing library" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1243 a owl:Class ; +ns1:data_1243 a owl:Class ; rdfs:label "Primer3 mispriming library file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1244 a owl:Class ; +ns1:data_1244 a owl:Class ; rdfs:label "primersearch primer pairs sequence record" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "File of one or more pairs of primer sequences, as used by EMBOSS primersearch application." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "File of one or more pairs of primer sequences, as used by EMBOSS primersearch application." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1245 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A cluster of protein sequences." ; + ns2:hasExactSynonym "Protein sequence cluster" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The sequences are typically related, for example a family of sequences." ; - rdfs:subClassOf :data_1233, - :data_1235 . + rdfs:subClassOf ns1:data_1233, + ns1:data_1235 . -:data_1250 a owl:Class ; +ns1:data_1250 a owl:Class ; rdfs:label "Word size" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Size of a sequence word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Size of a sequence word." ; + ns2:inSubset ns4: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 ; +ns1:data_1251 a owl:Class ; rdfs:label "Window size" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Size of a sequence window." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Size of a sequence window." ; + ns2:inSubset ns4: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 ; +ns1:data_1252 a owl:Class ; rdfs:label "Sequence length range" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Specification of range(s) of length of sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Specification of range(s) of length of sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1253 a owl:Class ; +ns1:data_1253 a owl:Class ; rdfs:label "Sequence information report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2955 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2955 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1256 a owl:Class ; +ns1:data_1256 a owl:Class ; rdfs:label "Sequence features (comparative)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1255 ; - oboInOwl:hasDefinition "Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1255 ; + ns2:hasDefinition "Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc." ; + ns2:inSubset ns4: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 ; +ns1:data_1257 a owl:Class ; rdfs:label "Sequence property (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0897 ; - oboInOwl:hasDefinition "A report of general sequence properties derived from protein sequence data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0897 ; + ns2:hasDefinition "A report of general sequence properties derived from protein sequence data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1258 a owl:Class ; +ns1:data_1258 a owl:Class ; rdfs:label "Sequence property (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0912 ; - oboInOwl:hasDefinition "A report of general sequence properties derived from nucleotide sequence data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0912 ; + ns2:hasDefinition "A report of general sequence properties derived from nucleotide sequence data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1262 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1233 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on peptide fragments of certain molecular weight(s) in one or more protein sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1233 . -:data_1264 a owl:Class ; +ns1:data_1264 a owl:Class ; rdfs:label "Sequence composition table" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1261 ; - oboInOwl:hasDefinition "A table of character or word composition / frequency of a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1261 ; + ns2:hasDefinition "A table of character or word composition / frequency of a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1265 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1267 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of base frequencies of a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1269 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of amino acid frequencies of a protein sequence." ; + ns2:hasExactSynonym "Sequence composition (amino acid frequencies)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1:data_1269 a owl:Class ; rdfs:label "DAS sequence feature annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1978 ; - oboInOwl:hasDefinition "Annotation of a molecular sequence in DAS format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1978 ; + ns2:hasDefinition "Annotation of a molecular sequence in DAS format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1281 a owl:Class ; +ns1:data_1281 a owl:Class ; rdfs:label "Sequence signature map" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image of a sequence with matches to signatures, motifs or profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image of a sequence with matches to signatures, motifs or profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2969 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1284 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1278 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A gene map showing distances between loci based on relative cotransduction frequencies." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1278 . -:data_1285 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1279 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279 . -:data_1286 a owl:Class ; +ns1:data_1286 a owl:Class ; rdfs:label "Plasmid map" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Sequence map of a plasmid (circular DNA)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1279 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence map of a plasmid (circular DNA)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279 . -:data_1288 a owl:Class ; +ns1:data_1288 a owl:Class ; rdfs:label "Genome map" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Sequence map of a whole genome." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1279 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence map of a whole genome." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279 . -:data_1290 a owl:Class ; +ns1:data_1290 a owl:Class ; rdfs:label "InterPro compact match image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image showing matches between protein sequence(s) and InterPro Entries." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image showing matches between protein sequence(s) and InterPro Entries." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1291 a owl:Class ; rdfs:label "InterPro detailed match image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image showing detailed information on matches between protein sequence(s) and InterPro Entries." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image showing detailed information on matches between protein sequence(s) and InterPro Entries." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1292 a owl:Class ; rdfs:label "InterPro architecture image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image showing the architecture of InterPro domains in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image showing the architecture of InterPro domains in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1293 a owl:Class ; rdfs:label "SMART protein schematic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2969 ; - oboInOwl:hasDefinition "SMART protein schematic in PNG format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2969 ; + ns2:hasDefinition "SMART protein schematic in PNG format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1294 a owl:Class ; +ns1:data_1294 a owl:Class ; rdfs:label "GlobPlot domain image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2969 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1298 a owl:Class ; +ns1:data_1298 a owl:Class ; rdfs:label "Sequence motif matches" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1299 a owl:Class ; +ns1:data_1299 a owl:Class ; rdfs:label "Sequence features (repeats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1255 ; - oboInOwl:hasDefinition "Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1255 ; + ns2:hasDefinition "Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; + ns2:inSubset ns4: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 ; +ns1:data_1300 a owl:Class ; rdfs:label "Gene and transcript structure (report)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0916 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1301 a owl:Class ; +ns1:data_1301 a owl:Class ; rdfs:label "Mobile genetic elements" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "regions of a nucleic acid sequence containing mobile genetic elements." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "regions of a nucleic acid sequence containing mobile genetic elements." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1303 a owl:Class ; +ns1:data_1303 a owl:Class ; rdfs:label "Nucleic acid features (quadruplexes)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3128 ; - oboInOwl:hasDefinition "A report on quadruplex-forming motifs in a nucleotide sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3128 ; + ns2:hasDefinition "A report on quadruplex-forming motifs in a nucleotide sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1306 a owl:Class ; +ns1:data_1306 a owl:Class ; rdfs:label "Nucleosome exclusion sequences" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Report on nucleosome formation potential or exclusion sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on nucleosome formation potential or exclusion sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1309 a owl:Class ; +ns1:data_1309 a owl:Class ; rdfs:label "Gene features (exonic splicing enhancer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "A report on exonic splicing enhancers (ESE) in an exon." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "A report on exonic splicing enhancers (ESE) in an exon." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1310 a owl:Class ; +ns1:data_1310 a owl:Class ; rdfs:label "Nucleic acid features (microRNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1313 a owl:Class ; +ns1:data_1313 a owl:Class ; rdfs:label "Coding region" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1314 a owl:Class ; +ns1:data_1314 a owl:Class ; rdfs:label "Gene features (SECIS element)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0916 ; - oboInOwl:hasDefinition "A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1315 a owl:Class ; +ns1:data_1315 a owl:Class ; rdfs:label "Transcription factor binding sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "transcription factor binding sites (TFBS) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "transcription factor binding sites (TFBS) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1321 a owl:Class ; +ns1:data_1321 a owl:Class ; rdfs:label "Protein features (sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites." ; + ns2:inSubset ns4: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 ; +ns1:data_1322 a owl:Class ; rdfs:label "Protein features report (signal peptides)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "signal peptides or signal peptide cleavage sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "signal peptides or signal peptide cleavage sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1323 a owl:Class ; +ns1:data_1323 a owl:Class ; rdfs:label "Protein features report (cleavage sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1324 a owl:Class ; +ns1:data_1324 a owl:Class ; rdfs:label "Protein features (post-translation modifications)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "post-translation modifications in a protein sequence, typically describing the specific sites involved." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "post-translation modifications in a protein sequence, typically describing the specific sites involved." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1325 a owl:Class ; +ns1:data_1325 a owl:Class ; rdfs:label "Protein features report (active sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "catalytic residues (active site) of an enzyme." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "catalytic residues (active site) of an enzyme." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1326 a owl:Class ; +ns1:data_1326 a owl:Class ; rdfs:label "Protein features report (binding sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1327 a owl:Class ; +ns1:data_1327 a owl:Class ; rdfs:label "Protein features (epitopes)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:comment "Epitope mapping is commonly done during vaccine design." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1328 a owl:Class ; +ns1:data_1328 a owl:Class ; rdfs:label "Protein features report (nucleic acid binding sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1329 a owl:Class ; +ns1:data_1329 a owl:Class ; rdfs:label "MHC Class I epitopes report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1277 ; - oboInOwl:hasDefinition "A report on epitopes that bind to MHC class I molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on epitopes that bind to MHC class I molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1330 a owl:Class ; +ns1:data_1330 a owl:Class ; rdfs:label "MHC Class II epitopes report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1277 ; - oboInOwl:hasDefinition "A report on predicted epitopes that bind to MHC class II molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on predicted epitopes that bind to MHC class II molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1331 a owl:Class ; +ns1:data_1331 a owl:Class ; rdfs:label "Protein features (PEST sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "A report or plot of PEST sites in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "A report or plot of PEST sites in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1338 a owl:Class ; rdfs:label "Sequence database hits scores list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0857 ; - oboInOwl:hasDefinition "Scores from a sequence database search (for example a BLAST search)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0857 ; + ns2:hasDefinition "Scores from a sequence database search (for example a BLAST search)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1339 a owl:Class ; +ns1:data_1339 a owl:Class ; rdfs:label "Sequence database hits alignments list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0857 ; - oboInOwl:hasDefinition "Alignments from a sequence database search (for example a BLAST search)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0857 ; + ns2:hasDefinition "Alignments from a sequence database search (for example a BLAST search)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1340 a owl:Class ; +ns1:data_1340 a owl:Class ; rdfs:label "Sequence database hits evaluation data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0857 ; + ns2:hasDefinition "A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1344 a owl:Class ; +ns1:data_1344 a owl:Class ; rdfs:label "MEME motif alphabet" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "Alphabet for the motifs (patterns) that MEME will search for." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "Alphabet for the motifs (patterns) that MEME will search for." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1345 a owl:Class ; +ns1:data_1345 a owl:Class ; rdfs:label "MEME background frequencies file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "MEME background frequencies file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "MEME background frequencies file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1346 a owl:Class ; +ns1:data_1346 a owl:Class ; rdfs:label "MEME motifs directive file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "File of directives for ordering and spacing of MEME motifs." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "File of directives for ordering and spacing of MEME motifs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1348 a owl:Class ; +ns1:data_1348 a owl:Class ; rdfs:label "HMM emission and transition counts" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_3354, + ns1:data_3355 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1352 a owl:Class ; +ns1:data_1352 a owl:Class ; rdfs:label "Regular expression" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Regular expression pattern." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Regular expression pattern." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_1358 a owl:Class ; +ns1:data_1358 a owl:Class ; rdfs:label "Prosite nucleotide pattern" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1353 ; - oboInOwl:hasDefinition "A nucleotide regular expression pattern from the Prosite database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1353 ; + ns2:hasDefinition "A nucleotide regular expression pattern from the Prosite database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1359 a owl:Class ; +ns1:data_1359 a owl:Class ; rdfs:label "Prosite protein pattern" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1353 ; - oboInOwl:hasDefinition "A protein regular expression pattern from the Prosite database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1353 ; + ns2:hasDefinition "A protein regular expression pattern from the Prosite database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1361 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2854 . - -:data_1362 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position." ; + ns2:hasExactSynonym "PFM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2854 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position." ; + ns2:hasExactSynonym "PWM" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Contributions of individual sequences to the matrix might be uneven (weighted)." ; - rdfs:subClassOf :data_2854 . + rdfs:subClassOf ns1:data_2854 . -:data_1363 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2854 . - -:data_1365 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "ICM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2854 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2854 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "One or more fingerprints (sequence classifiers) as used in the PRINTS database." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2854 . -:data_1368 a owl:Class ; +ns1:data_1368 a owl:Class ; rdfs:label "Domainatrix signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1354 ; - oboInOwl:hasDefinition "A protein signature of the type used in the EMBASSY Signature package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1354 ; + ns2:hasDefinition "A protein signature of the type used in the EMBASSY Signature package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1371 a owl:Class ; +ns1:data_1371 a owl:Class ; rdfs:label "HMMER NULL hidden Markov model" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1364 ; - oboInOwl:hasDefinition "NULL hidden Markov model representation used by the HMMER package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1364 ; + ns2:hasDefinition "NULL hidden Markov model representation used by the HMMER package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1372 a owl:Class ; +ns1:data_1372 a owl:Class ; rdfs:label "Protein family signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein family signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein family signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1373 a owl:Class ; rdfs:label "Protein domain signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein domain signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein domain signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1374 a owl:Class ; rdfs:label "Protein region signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein region signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein region signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1375 a owl:Class ; rdfs:label "Protein repeat signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein repeat signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein repeat signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1376 a owl:Class ; rdfs:label "Protein site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1377 a owl:Class ; rdfs:label "Protein conserved site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein conserved site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein conserved site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1378 a owl:Class ; rdfs:label "Protein active site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein active site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein active site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1379 a owl:Class ; rdfs:label "Protein binding site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein binding site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein binding site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1380 a owl:Class ; rdfs:label "Protein post-translational modification signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein post-translational modification signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein post-translational modification signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1382 a owl:Class ; rdfs:label "Sequence alignment (multiple)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of more than two molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of more than two molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1386 a owl:Class ; +ns1:data_1386 a owl:Class ; rdfs:label "Sequence alignment (nucleic acid pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1381, - :data_1383 ; - oboInOwl:hasDefinition "Alignment of exactly two nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1381, + ns1:data_1383 ; + ns2:hasDefinition "Alignment of exactly two nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1387 a owl:Class ; +ns1:data_1387 a owl:Class ; rdfs:label "Sequence alignment (protein pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1381, - :data_1384 ; - oboInOwl:hasDefinition "Alignment of exactly two protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1381, + ns1:data_1384 ; + ns2:hasDefinition "Alignment of exactly two protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1388 a owl:Class ; +ns1:data_1388 a owl:Class ; rdfs:label "Hybrid sequence alignment (pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1385 ; - oboInOwl:hasDefinition "Alignment of exactly two molecular sequences of different types." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1385 ; + ns2:hasDefinition "Alignment of exactly two molecular sequences of different types." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1389 a owl:Class ; +ns1:data_1389 a owl:Class ; rdfs:label "Multiple nucleotide sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of more than two nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of more than two nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1390 a owl:Class ; +ns1:data_1390 a owl:Class ; rdfs:label "Multiple protein sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of more than two protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of more than two protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1395 a owl:Class ; +ns1:data_1395 a owl:Class ; rdfs:label "Score end gaps control" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Whether end gaps are scored or not." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Whether end gaps are scored or not." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1396 a owl:Class ; +ns1:data_1396 a owl:Class ; rdfs:label "Aligned sequence order" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Controls the order of sequences in an output sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Controls the order of sequences in an output sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1400 a owl:Class ; +ns1:data_1400 a owl:Class ; rdfs:label "Terminal gap penalty" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1410, + ns1:data_1411 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1401 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The score for a 'match' used in various sequence database search applications with simple scoring schemes." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_1402 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_1403 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "This is the threshold drop in score at which extension of word alignment is halted." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_1404 a owl:Class ; +ns1:data_1404 a owl:Class ; rdfs:label "Gap opening penalty (integer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1397 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1397 ; + ns2:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1405 a owl:Class ; +ns1:data_1405 a owl:Class ; rdfs:label "Gap opening penalty (float)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1397 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1397 ; + ns2:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1406 a owl:Class ; +ns1:data_1406 a owl:Class ; rdfs:label "Gap extension penalty (integer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1398 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1398 ; + ns2:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1407 a owl:Class ; +ns1:data_1407 a owl:Class ; rdfs:label "Gap extension penalty (float)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1398 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1398 ; + ns2:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1408 a owl:Class ; +ns1:data_1408 a owl:Class ; rdfs:label "Gap separation penalty (integer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1399 ; + ns2:hasDefinition "A simple floating point number defining the penalty for gaps that are close together in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1409 a owl:Class ; +ns1:data_1409 a owl:Class ; rdfs:label "Gap separation penalty (float)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1399 ; + ns2:hasDefinition "A simple floating point number defining the penalty for gaps that are close together in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1412 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0865 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0865 . -:data_1414 a owl:Class ; +ns1:data_1414 a owl:Class ; rdfs:label "Sequence alignment metadata (quality report)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "Data on molecular sequence alignment quality (estimated accuracy)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "Data on molecular sequence alignment quality (estimated accuracy)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1415 a owl:Class ; +ns1:data_1415 a owl:Class ; rdfs:label "Sequence alignment report (site conservation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2161 ; - oboInOwl:hasDefinition "Data on character conservation in a molecular sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2161 ; + ns2:hasDefinition "Data on character conservation in a molecular sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_1416 a owl:Class ; rdfs:label "Sequence alignment report (site correlation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0867 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1417 a owl:Class ; +ns1:data_1417 a owl:Class ; rdfs:label "Sequence-profile alignment (Domainatrix signature)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0858 ; - oboInOwl:hasDefinition "Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0858 ; + ns2:hasDefinition "Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1418 a owl:Class ; +ns1:data_1418 a owl:Class ; rdfs:label "Sequence-profile alignment (HMM)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0858 ; - oboInOwl:hasDefinition "Alignment of molecular sequence(s) to a hidden Markov model(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0858 ; + ns2:hasDefinition "Alignment of molecular sequence(s) to a hidden Markov model(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1420 a owl:Class ; +ns1:data_1420 a owl:Class ; rdfs:label "Sequence-profile alignment (fingerprint)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0858 ; - oboInOwl:hasDefinition "Alignment of molecular sequences to a protein fingerprint from the PRINTS database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0858 ; + ns2:hasDefinition "Alignment of molecular sequences to a protein fingerprint from the PRINTS database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1438 a owl:Class ; +ns1:data_1438 a owl:Class ; rdfs:label "Phylogenetic report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees." ; + ns2:inSubset ns4: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 ; +ns1:data_1440 a owl:Class ; rdfs:label "Phylogenetic tree report (tree shape)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2523 ; - oboInOwl:hasDefinition "Data about the shape of a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "Data about the shape of a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1441 a owl:Class ; +ns1:data_1441 a owl:Class ; rdfs:label "Phylogenetic tree report (tree evaluation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2523 ; - oboInOwl:hasDefinition "Data on the confidence of a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "Data on the confidence of a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1443 a owl:Class ; +ns1:data_1443 a owl:Class ; rdfs:label "Phylogenetic tree report (tree stratigraphic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2523 ; - oboInOwl:hasDefinition "Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1444 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . - -:data_1446 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts." ; + ns2:hasExactSynonym "Phylogenetic report (character contrasts)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . + +ns1:data_1446 a owl:Class ; rdfs:label "Comparison matrix (integers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0874 ; - oboInOwl:hasDefinition "Matrix of integer numbers for sequence comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0874 ; + ns2:hasDefinition "Matrix of integer numbers for sequence comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1447 a owl:Class ; +ns1:data_1447 a owl:Class ; rdfs:label "Comparison matrix (floats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0874 ; - oboInOwl:hasDefinition "Matrix of floating point numbers for sequence comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0874 ; + ns2:hasDefinition "Matrix of floating point numbers for sequence comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1450 a owl:Class ; +ns1:data_1450 a owl:Class ; rdfs:label "Nucleotide comparison matrix (integers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1448 ; - oboInOwl:hasDefinition "Matrix of integer numbers for nucleotide comparison." ; - oboInOwl:hasExactSynonym "Nucleotide substitution matrix (integers)" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1448 ; + ns2:hasDefinition "Matrix of integer numbers for nucleotide comparison." ; + ns2:hasExactSynonym "Nucleotide substitution matrix (integers)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1451 a owl:Class ; +ns1:data_1451 a owl:Class ; rdfs:label "Nucleotide comparison matrix (floats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1448 ; - oboInOwl:hasDefinition "Matrix of floating point numbers for nucleotide comparison." ; - oboInOwl:hasExactSynonym "Nucleotide substitution matrix (floats)" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1448 ; + ns2:hasDefinition "Matrix of floating point numbers for nucleotide comparison." ; + ns2:hasExactSynonym "Nucleotide substitution matrix (floats)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1452 a owl:Class ; +ns1:data_1452 a owl:Class ; rdfs:label "Amino acid comparison matrix (integers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1449 ; - oboInOwl:hasDefinition "Matrix of integer numbers for amino acid comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1449 ; + ns2:hasDefinition "Matrix of integer numbers for amino acid comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1453 a owl:Class ; +ns1:data_1453 a owl:Class ; rdfs:label "Amino acid comparison matrix (floats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1449 ; - oboInOwl:hasDefinition "Matrix of floating point numbers for amino acid comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1449 ; + ns2:hasDefinition "Matrix of floating point numbers for amino acid comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1466 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1465 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1465 . -:data_1469 a owl:Class ; +ns1:data_1469 a owl:Class ; rdfs:label "Protein structure (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1460 ; - oboInOwl:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (all atoms)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1460 ; + ns2:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (all atoms)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1470 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only)." ; + ns2:hasExactSynonym "Protein structure (C-alpha atoms)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; - rdfs:subClassOf :data_1460 . + rdfs:subClassOf ns1:data_1460 . -:data_1471 a owl:Class ; +ns1:data_1471 a owl:Class ; rdfs:label "Protein chain (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1467 ; - oboInOwl:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1467 ; + ns2:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1472 a owl:Class ; +ns1:data_1472 a owl:Class ; rdfs:label "Protein chain (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1467 ; + ns2:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only)." ; + ns2:inSubset ns4: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 ; +ns1:data_1473 a owl:Class ; rdfs:label "Protein domain (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1468 ; - oboInOwl:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1468 ; + ns2:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1474 a owl:Class ; +ns1:data_1474 a owl:Class ; rdfs:label "Protein domain (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1468 ; + ns2:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only)." ; + ns2:inSubset ns4: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 ; +ns1:data_1480 a owl:Class ; rdfs:label "Structure alignment (multiple)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0886 ; - oboInOwl:hasDefinition "Alignment (superimposition) of more than two molecular tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0886 ; + ns2:hasDefinition "Alignment (superimposition) of more than two molecular tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1483 a owl:Class ; +ns1:data_1483 a owl:Class ; rdfs:label "Structure alignment (protein pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1479, - :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1479, + ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1484 a owl:Class ; +ns1:data_1484 a owl:Class ; rdfs:label "Multiple protein tertiary structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of more than two protein tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of more than two protein tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1485 a owl:Class ; +ns1:data_1485 a owl:Class ; rdfs:label "Structure alignment (protein all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1486 a owl:Class ; +ns1:data_1486 a owl:Class ; rdfs:label "Structure alignment (protein C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + ns2:inSubset ns4: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 ; +ns1:data_1487 a owl:Class ; rdfs:label "Pairwise protein tertiary structure alignment (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1488 a owl:Class ; +ns1:data_1488 a owl:Class ; rdfs:label "Pairwise protein tertiary structure alignment (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + ns2:inSubset ns4: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 ; +ns1:data_1489 a owl:Class ; rdfs:label "Multiple protein tertiary structure alignment (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1490 a owl:Class ; +ns1:data_1490 a owl:Class ; rdfs:label "Multiple protein tertiary structure alignment (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + ns2:inSubset ns4: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 ; +ns1:data_1491 a owl:Class ; rdfs:label "Structure alignment (nucleic acid pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1479, - :data_1482 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1479, + ns1:data_1482 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1492 a owl:Class ; +ns1:data_1492 a owl:Class ; rdfs:label "Multiple nucleic acid tertiary structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1482 ; - oboInOwl:hasDefinition "Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1482 ; + ns2:hasDefinition "Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1493 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1482 . - -:data_1494 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of RNA tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (RNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1482 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . -:data_1495 a owl:Class ; +ns1:data_1495 a owl:Class ; rdfs:label "DaliLite hit table" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0887 ; - oboInOwl:hasDefinition "DaliLite hit table of protein chain tertiary structure alignment data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0887 ; + ns2:hasDefinition "DaliLite hit table of protein chain tertiary structure alignment data." ; + ns2:inSubset ns4: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 ; +ns1:data_1496 a owl:Class ; rdfs:label "Molecular similarity score" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0888 ; - oboInOwl:hasDefinition "A score reflecting structural similarities of two molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0888 ; + ns2:hasDefinition "A score reflecting structural similarities of two molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1497 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0888 . - -:data_1498 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates." ; + ns2:hasExactSynonym "RMSD" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0888 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A measure of the similarity between two ligand fingerprints." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0888 . -:data_1502 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1503 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids." ; + ns2:hasExactSynonym "Chemical classes (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2016 . - -:data_1505 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Statistical protein contact potentials." ; + ns2:hasExactSynonym "Contact potentials (amino acid pair-wise)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2016 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1506 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Molecular weights of amino acids." ; + ns2:hasExactSynonym "Molecular weight (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1507 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Hydrophobic, hydrophilic or charge properties of amino acids." ; + ns2:hasExactSynonym "Hydropathy (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1508 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Experimental free energy values for the water-interface and water-octanol transitions for the amino acids." ; + ns2:hasExactSynonym "White-Wimley data (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1509 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Van der Waals radii of atoms for different amino acid residues." ; + ns2:hasExactSynonym "van der Waals radii (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1:data_1509 a owl:Class ; rdfs:label "Enzyme report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "An informative report on a specific enzyme." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on a specific enzyme." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1517 a owl:Class ; +ns1:data_1517 a owl:Class ; rdfs:label "Restriction enzyme report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "An informative report on a specific restriction enzyme such as enzyme reference data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on a specific restriction enzyme such as enzyme reference data." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; - rdfs:subClassOf :data_2970 . + rdfs:subClassOf ns1:data_2970 . -:data_1523 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1529 a owl:Class ; +ns1:data_1529 a owl:Class ; rdfs:label "Protein pKa value" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The pKa value of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The pKa value of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1532 a owl:Class ; +ns1:data_1532 a owl:Class ; rdfs:label "Protein optical density" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The optical density of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The optical density of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1533 a owl:Class ; +ns1:data_1533 a owl:Class ; rdfs:label "Protein subcellular localisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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:hasExactSynonym "Protein report (subcellular localisation)" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins)." ; + ns2:hasExactSynonym "Protein report (subcellular localisation)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1536 a owl:Class ; +ns1:data_1536 a owl:Class ; rdfs:label "MHC peptide immunogenicity report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1534 ; - oboInOwl:hasDefinition "A report on the immunogenicity of MHC class I or class II binding peptides." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1534 ; + ns2:hasDefinition "A report on the immunogenicity of MHC class I or class II binding peptides." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1540 a owl:Class ; +ns1:data_1540 a owl:Class ; rdfs:label "Protein non-covalent interactions report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1541 a owl:Class ; +ns1:data_1541 a owl:Class ; rdfs:label "Protein flexibility or motion report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "Informative report on flexibility or motion of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "Informative report on flexibility or motion of a protein structure." ; + ns2:inSubset ns4: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 ; +ns1:data_1543 a owl:Class ; rdfs:label "Protein surface report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure." ; + ns2:inSubset ns4: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 ; +ns1:data_1550 a owl:Class ; rdfs:label "Protein non-canonical interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "Non-canonical atomic interactions in protein structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "Non-canonical atomic interactions in protein structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1553 a owl:Class ; +ns1:data_1553 a owl:Class ; rdfs:label "CATH node" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a node from the CATH database." ; + ns2:inSubset ns4: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 ; +ns1:data_1554 a owl:Class ; rdfs:label "SCOP node" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1555 a owl:Class ; +ns1:data_1555 a owl:Class ; rdfs:label "EMBASSY domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0907 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0907 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1556 a owl:Class ; +ns1:data_1556 a owl:Class ; rdfs:label "CATH class" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'class' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'class' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1557 a owl:Class ; +ns1:data_1557 a owl:Class ; rdfs:label "CATH architecture" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'architecture' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'architecture' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1558 a owl:Class ; +ns1:data_1558 a owl:Class ; rdfs:label "CATH topology" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'topology' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'topology' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1559 a owl:Class ; +ns1:data_1559 a owl:Class ; rdfs:label "CATH homologous superfamily" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'homologous superfamily' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'homologous superfamily' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1560 a owl:Class ; +ns1:data_1560 a owl:Class ; rdfs:label "CATH structurally similar group" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'structurally similar group' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'structurally similar group' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1561 a owl:Class ; +ns1:data_1561 a owl:Class ; rdfs:label "CATH functional category" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'functional category' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'functional category' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1564 a owl:Class ; +ns1:data_1564 a owl:Class ; rdfs:label "Protein fold recognition report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_1565 a owl:Class ; rdfs:label "Protein-protein interaction report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "protein-protein interaction(s), including interactions between protein domains." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "protein-protein interaction(s), including interactions between protein domains." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1567 a owl:Class ; +ns1:data_1567 a owl:Class ; rdfs:label "Protein-nucleic acid interactions report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "protein-DNA/RNA interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "protein-DNA/RNA interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1585 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2985 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2985 . -:data_1586 a owl:Class ; +ns1:data_1586 a owl:Class ; rdfs:label "Nucleic acid melting temperature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2139 ; - oboInOwl:hasDefinition "Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2139 ; + ns2:hasDefinition "Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1587 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583 ; + ns2:hasDefinition "Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1588 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA base pair stacking energies data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_1589 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA base pair twist angle data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_1590 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA base trimer roll angles data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_1591 a owl:Class ; +ns1:data_1591 a owl:Class ; rdfs:label "Vienna RNA parameters" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "RNA parameters used by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "RNA parameters used by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1592 a owl:Class ; +ns1:data_1592 a owl:Class ; rdfs:label "Vienna RNA structure constraints" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Structure constraints used by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Structure constraints used by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1593 a owl:Class ; +ns1:data_1593 a owl:Class ; rdfs:label "Vienna RNA concentration data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "RNA concentration data used by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "RNA concentration data used by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1594 a owl:Class ; +ns1:data_1594 a owl:Class ; rdfs:label "Vienna RNA calculated energy" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1584 ; - oboInOwl:hasDefinition "RNA calculated energy data generated by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1584 ; + ns2:hasDefinition "RNA calculated energy data generated by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1595 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dotplot of RNA base pairing probability matrix." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Such as generated by the Vienna package." ; - rdfs:subClassOf :data_2088, - :data_2884 . + rdfs:subClassOf ns1:data_2088, + ns1:data_2884 . -:data_1599 a owl:Class ; +ns1:data_1599 a owl:Class ; rdfs:label "Codon adaptation index" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2865 ; - oboInOwl:hasDefinition "A simple measure of synonymous codon usage bias often used to predict gene expression levels." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2865 ; + ns2:hasDefinition "A simple measure of synonymous codon usage bias often used to predict gene expression levels." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1600 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0914 . - -:data_1601 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of the synonymous codon usage calculated for windows over a nucleotide sequence." ; + ns2:hasExactSynonym "Synonymous codon usage statistic plot" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0914 . + +ns1:data_1601 a owl:Class ; rdfs:label "Nc statistic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2865 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1621 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about the influence of genotype on drug response." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." ; - rdfs:subClassOf :data_0920 . + rdfs:subClassOf ns1:data_0920 . -:data_1634 a owl:Class ; +ns1:data_1634 a owl:Class ; rdfs:label "Linkage disequilibrium (report)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0927 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0927 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1642 a owl:Class ; +ns1:data_1642 a owl:Class ; rdfs:label "Affymetrix probe sets library file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2717 ; - oboInOwl:hasDefinition "Affymetrix library file of information about which probes belong to which probe set." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2717 ; + ns2:hasDefinition "Affymetrix library file of information about which probes belong to which probe set." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1643 a owl:Class ; +ns1:data_1643 a owl:Class ; rdfs:label "Affymetrix probe sets information library file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2717 ; + ns2:hasDefinition "Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated." ; + ns2:hasRelatedSynonym "GIN file" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1646 a owl:Class ; +ns1:data_1646 a owl:Class ; rdfs:label "Molecular weights standard fingerprint" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0944 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0944 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1656 a owl:Class ; +ns1:data_1656 a owl:Class ; rdfs:label "Metabolic pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report typically including a map (diagram) of a metabolic pathway." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report typically including a map (diagram) of a metabolic pathway." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1657 a owl:Class ; rdfs:label "Genetic information processing pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "genetic information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "genetic information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1658 a owl:Class ; +ns1:data_1658 a owl:Class ; rdfs:label "Environmental information processing pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "environmental information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "environmental information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1659 a owl:Class ; +ns1:data_1659 a owl:Class ; rdfs:label "Signal transduction pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report typically including a map (diagram) of a signal transduction pathway." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report typically including a map (diagram) of a signal transduction pathway." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1660 a owl:Class ; +ns1:data_1660 a owl:Class ; rdfs:label "Cellular process pathways report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Topic concernning cellular process pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Topic concernning cellular process pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1661 a owl:Class ; +ns1:data_1661 a owl:Class ; rdfs:label "Disease pathway or network report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "disease pathways, typically of human disease." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "disease pathways, typically of human disease." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1662 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1696 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1696 ; + ns2:hasDefinition "A report typically including a map (diagram) of drug structure relationships." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1696 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1663 a owl:Class ; +ns1:data_1663 a owl:Class ; rdfs:label "Protein interaction networks" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_2600 ; - oboInOwl:hasDefinition "networks of protein interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_2600 ; + ns2:hasDefinition "networks of protein interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1664 a owl:Class ; +ns1:data_1664 a owl:Class ; rdfs:label "MIRIAM datatype" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1883 ; + ns2:hasDefinition "An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A simple floating point number defining the lower or upper limit of an expectation value (E-value)." ; + ns2:hasExactSynonym "Expectation value" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0951 . -:data_1668 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The z-value is the number of standard deviations a data value is above or below a mean value." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A z-value might be specified as a threshold for reporting hits from database searches." ; - rdfs:subClassOf :data_0951 . + rdfs:subClassOf ns1:data_0951 . -:data_1669 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A z-value might be specified as a threshold for reporting hits from database searches." ; - rdfs:subClassOf :data_0951 . + rdfs:subClassOf ns1:data_0951 . -:data_1670 a owl:Class ; +ns1:data_1670 a owl:Class ; rdfs:label "Database version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "Information on a database (or ontology) version, for example name, version number and release date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "Information on a database (or ontology) version, for example name, version number and release date." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1671 a owl:Class ; +ns1:data_1671 a owl:Class ; rdfs:label "Tool version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0958 ; - oboInOwl:hasDefinition "Information on an application version, for example name, version number and release date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0958 ; + ns2:hasDefinition "Information on an application version, for example name, version number and release date." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1672 a owl:Class ; +ns1:data_1672 a owl:Class ; rdfs:label "CATH version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Information on a version of the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Information on a version of the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1673 a owl:Class ; +ns1:data_1673 a owl:Class ; rdfs:label "Swiss-Prot to PDB mapping" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0954 ; - oboInOwl:hasDefinition "Cross-mapping of Swiss-Prot codes to PDB identifiers." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0954 ; + ns2:hasDefinition "Cross-mapping of Swiss-Prot codes to PDB identifiers." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1674 a owl:Class ; +ns1:data_1674 a owl:Class ; rdfs:label "Sequence database cross-references" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2093 ; - oboInOwl:hasDefinition "Cross-references from a sequence record to other databases." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2093 ; + ns2:hasDefinition "Cross-references from a sequence record to other databases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1675 a owl:Class ; +ns1:data_1675 a owl:Class ; rdfs:label "Job status" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Metadata on the status of a submitted job." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Metadata on the status of a submitted job." ; + ns2:inSubset ns4: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 ; +ns1:data_1676 a owl:Class ; rdfs:label "Job ID" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "The (typically numeric) unique identifier of a submitted job." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "The (typically numeric) unique identifier of a submitted job." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1677 a owl:Class ; +ns1:data_1677 a owl:Class ; rdfs:label "Job type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of job, for example interactive or non-interactive." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of job, for example interactive or non-interactive." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1678 a owl:Class ; +ns1:data_1678 a owl:Class ; rdfs:label "Tool log" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1679 a owl:Class ; +ns1:data_1679 a owl:Class ; rdfs:label "DaliLite log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1680 a owl:Class ; +ns1:data_1680 a owl:Class ; rdfs:label "STRIDE log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "STRIDE log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "STRIDE log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1681 a owl:Class ; +ns1:data_1681 a owl:Class ; rdfs:label "NACCESS log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "NACCESS log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "NACCESS log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1682 a owl:Class ; +ns1:data_1682 a owl:Class ; rdfs:label "EMBOSS wordfinder log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS wordfinder log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS wordfinder log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1683 a owl:Class ; +ns1:data_1683 a owl:Class ; rdfs:label "EMBOSS domainatrix log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS (EMBASSY) domainatrix application log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS (EMBASSY) domainatrix application log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1684 a owl:Class ; +ns1:data_1684 a owl:Class ; rdfs:label "EMBOSS sites log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS (EMBASSY) sites application log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS (EMBASSY) sites application log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1685 a owl:Class ; +ns1:data_1685 a owl:Class ; rdfs:label "EMBOSS supermatcher error file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS (EMBASSY) supermatcher error file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS (EMBASSY) supermatcher error file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1686 a owl:Class ; +ns1:data_1686 a owl:Class ; rdfs:label "EMBOSS megamerger log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS megamerger log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS megamerger log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1687 a owl:Class ; +ns1:data_1687 a owl:Class ; rdfs:label "EMBOSS whichdb log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS megamerger log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS megamerger log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1688 a owl:Class ; +ns1:data_1688 a owl:Class ; rdfs:label "EMBOSS vectorstrip log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS vectorstrip log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS vectorstrip log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1689 a owl:Class ; +ns1:data_1689 a owl:Class ; rdfs:label "Username" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A username on a computer system." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2101 . - -:data_1690 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A username on a computer system." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2101 . + +ns1:data_1690 a owl:Class ; rdfs:label "Password" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A password on a computer system." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2101 . - -:data_1691 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A password on a computer system." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2101 . + +ns1:data_1691 a owl:Class ; rdfs:label "Email address" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:Email", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Email", "Moby:EmailAddress" ; - oboInOwl:hasDefinition "A valid email address of an end-user." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2101 . + ns2:hasDefinition "A valid email address of an end-user." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2101 . -:data_1692 a owl:Class ; +ns1:data_1692 a owl:Class ; rdfs:label "Person name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a person." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2118 . - -:data_1693 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a person." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2118 . + +ns1:data_1693 a owl:Class ; rdfs:label "Number of iterations" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Number of iterations of an algorithm." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Number of iterations of an algorithm." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1694 a owl:Class ; +ns1:data_1694 a owl:Class ; rdfs:label "Number of output entities" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Number of entities (for example database hits, sequences, alignments etc) to write to an output file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Number of entities (for example database hits, sequences, alignments etc) to write to an output file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1695 a owl:Class ; +ns1:data_1695 a owl:Class ; rdfs:label "Hit sort order" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Controls the order of hits (reported matches) in an output file from a database search." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Controls the order of hits (reported matches) in an output file from a database search." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1707 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "See also 'Phylogenetic tree'" ; - rdfs:subClassOf :data_2968 . + rdfs:subClassOf ns1:data_2968 . -:data_1708 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of RNA secondary structure, knots, pseudoknots etc." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_1711 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of two or more aligned molecular sequences possibly annotated with alignment features." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_1715 a owl:Class ; +ns1:data_1715 a owl:Class ; rdfs:label "BioPax term" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the BioPax ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the BioPax ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1716 a owl:Class ; +ns1:data_1716 a owl:Class ; rdfs:label "GO" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term definition from The Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term definition from The Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1717 a owl:Class ; +ns1:data_1717 a owl:Class ; rdfs:label "MeSH" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the MeSH vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the MeSH vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1718 a owl:Class ; +ns1:data_1718 a owl:Class ; rdfs:label "HGNC" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the HGNC controlled vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the HGNC controlled vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1719 a owl:Class ; +ns1:data_1719 a owl:Class ; rdfs:label "NCBI taxonomy vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the NCBI taxonomy vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the NCBI taxonomy vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1720 a owl:Class ; +ns1:data_1720 a owl:Class ; rdfs:label "Plant ontology term" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the Plant Ontology (PO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the Plant Ontology (PO)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1721 a owl:Class ; +ns1:data_1721 a owl:Class ; rdfs:label "UMLS" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the UMLS vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the UMLS vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1722 a owl:Class ; +ns1:data_1722 a owl:Class ; rdfs:label "FMA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from Foundational Model of Anatomy." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from Foundational Model of Anatomy." ; + ns2:inSubset ns4: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 ; +ns1:data_1723 a owl:Class ; rdfs:label "EMAP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the EMAP mouse ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the EMAP mouse ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1724 a owl:Class ; +ns1:data_1724 a owl:Class ; rdfs:label "ChEBI" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the ChEBI ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the ChEBI ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1725 a owl:Class ; +ns1:data_1725 a owl:Class ; rdfs:label "MGED" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the MGED ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the MGED ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1726 a owl:Class ; +ns1:data_1726 a owl:Class ; rdfs:label "myGrid" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the myGrid ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the myGrid ontology." ; + ns2:inSubset ns4: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 ; +ns1:data_1727 a owl:Class ; rdfs:label "GO (biological process)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2858 ; - oboInOwl:hasDefinition "A term definition for a biological process from the Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2858 ; + ns2:hasDefinition "A term definition for a biological process from the Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Data Type is an enumerated string." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1728 a owl:Class ; +ns1:data_1728 a owl:Class ; rdfs:label "GO (molecular function)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2858 ; - oboInOwl:hasDefinition "A term definition for a molecular function from the Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2858 ; + ns2:hasDefinition "A term definition for a molecular function from the Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Data Type is an enumerated string." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1729 a owl:Class ; +ns1:data_1729 a owl:Class ; rdfs:label "GO (cellular component)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2858 ; - oboInOwl:hasDefinition "A term definition for a cellular component from the Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2858 ; + ns2:hasDefinition "A term definition for a cellular component from the Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Data Type is an enumerated string." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1730 a owl:Class ; +ns1:data_1730 a owl:Class ; rdfs:label "Ontology relation type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0967 ; - oboInOwl:hasDefinition "A relation type defined in an ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0967 ; + ns2:hasDefinition "A relation type defined in an ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1731 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0967 . - -:data_1732 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The definition of a concept from an ontology." ; + ns2:hasExactSynonym "Ontology class definition" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0967 . + +ns1:data_1732 a owl:Class ; rdfs:label "Ontology concept comment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0967 ; - oboInOwl:hasDefinition "A comment on a concept from an ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0967 ; + ns2:hasDefinition "A comment on a concept from an ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1733 a owl:Class ; +ns1:data_1733 a owl:Class ; rdfs:label "Ontology concept reference" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2093 ; - oboInOwl:hasDefinition "Reference for a concept from an ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2093 ; + ns2:hasDefinition "Reference for a concept from an ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1738 a owl:Class ; +ns1:data_1738 a owl:Class ; rdfs:label "doc2loc document information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0970 ; - oboInOwl:hasDefinition "Information on a published article provided by the doc2loc program." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0970 ; + ns2:hasDefinition "Information on a published article provided by the doc2loc program." ; + ns2:inSubset ns4: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 ; +ns1:data_1742 a owl:Class ; rdfs:label "PDB residue number" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:PDB_residue_no", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "PDBML:PDB_residue_no", "WHATIF: pdb_number" ; - oboInOwl:hasDefinition "A residue identifier (a string) from a PDB file." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1016 . + ns2:hasDefinition "A residue identifier (a string) from a PDB file." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1016 . -:data_1744 a owl:Class ; +ns1:data_1744 a owl:Class ; rdfs:label "Atomic x coordinate" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.21" ; - :oldParent :data_1743 ; - oboInOwl:hasDbXref "PDBML:_atom_site.Cartn_x in PDBML", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1743 ; + ns2:hasDbXref "PDBML:_atom_site.Cartn_x in PDBML", "WHATIF: PDBx_Cartn_x" ; - oboInOwl:hasDefinition "Cartesian x coordinate of an atom (in a molecular structure)." ; - oboInOwl:hasExactSynonym "Cartesian x coordinate" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1743 ; + ns2:hasDefinition "Cartesian x coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian x coordinate" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1743 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1745 a owl:Class ; +ns1:data_1745 a owl:Class ; rdfs:label "Atomic y coordinate" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.21" ; - :oldParent :data_1743 ; - oboInOwl:hasDbXref "PDBML:_atom_site.Cartn_y in PDBML", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1743 ; + ns2:hasDbXref "PDBML:_atom_site.Cartn_y in PDBML", "WHATIF: PDBx_Cartn_y" ; - oboInOwl:hasDefinition "Cartesian y coordinate of an atom (in a molecular structure)." ; - oboInOwl:hasExactSynonym "Cartesian y coordinate" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1743 ; + ns2:hasDefinition "Cartesian y coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian y coordinate" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1743 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1746 a owl:Class ; +ns1:data_1746 a owl:Class ; rdfs:label "Atomic z coordinate" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.21" ; - :oldParent :data_1743 ; - oboInOwl:hasDbXref "PDBML:_atom_site.Cartn_z", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1743 ; + ns2:hasDbXref "PDBML:_atom_site.Cartn_z", "WHATIF: PDBx_Cartn_z" ; - oboInOwl:hasDefinition "Cartesian z coordinate of an atom (in a molecular structure)." ; - oboInOwl:hasExactSynonym "Cartesian z coordinate" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1743 ; + ns2:hasDefinition "Cartesian z coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian z coordinate" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1743 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1748 a owl:Class ; +ns1:data_1748 a owl:Class ; rdfs:label "PDB atom name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_atom_name", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1757 . + ns2:hasDefinition "Identifier (a string) of a specific atom from a PDB file for a molecular structure." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1757 . -:data_1755 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on a single atom from a protein structure." ; + ns2:hasExactSynonym "Atom data" ; + ns2:hasRelatedSynonym "CHEBI:33250" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1460 . -:data_1756 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on a single amino acid residue position in a protein structure." ; + ns2:hasExactSynonym "Residue" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1460 . -:data_1758 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2564 . - -:data_1759 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: type" ; + ns2:hasDefinition "Three-letter amino acid residue names as used in PDB files." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2564 . + +ns1:data_1759 a owl:Class ; rdfs:label "PDB model number" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_model_num", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3035 . - -:data_1762 a owl:Class ; + ns2:hasDefinition "Identifier of a model structure from a PDB file." ; + ns2:hasExactSynonym "Model number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3035 . + +ns1:data_1762 a owl:Class ; rdfs:label "CATH domain report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Summary of domain classification information for a CATH domain." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Summary of domain classification information for a CATH domain." ; + ns2:inSubset ns4: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 ; +ns1:data_1764 a owl:Class ; rdfs:label "CATH representative domain sequences (ATOM)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1235 ; + ns2:hasDefinition "FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1765 a owl:Class ; +ns1:data_1765 a owl:Class ; rdfs:label "CATH representative domain sequences (COMBS)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1235 ; + ns2:hasDefinition "FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1766 a owl:Class ; +ns1:data_1766 a owl:Class ; rdfs:label "CATH domain sequences (ATOM)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "FASTA sequence database for all CATH domains (based on PDB ATOM records)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "FASTA sequence database for all CATH domains (based on PDB ATOM records)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1767 a owl:Class ; +ns1:data_1767 a owl:Class ; rdfs:label "CATH domain sequences (COMBS)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "FASTA sequence database for all CATH domains (based on COMBS sequence data)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "FASTA sequence database for all CATH domains (based on COMBS sequence data)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1771 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . - -:data_1776 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Information on an molecular sequence version." ; + ns2:hasExactSynonym "Sequence version information" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . + +ns1:data_1776 a owl:Class ; rdfs:label "Protein report (function)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "Report on general functional properties of specific protein(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "Report on general functional properties of specific protein(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_1783 a owl:Class ; rdfs:label "Gene name (ASPGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ASPGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Aspergillus Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ASPGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Aspergillus Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1784 a owl:Class ; +ns1:data_1784 a owl:Class ; rdfs:label "Gene name (CGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:CGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Candida Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:CGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Candida Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1785 a owl:Class ; +ns1:data_1785 a owl:Class ; rdfs:label "Gene name (dictyBase)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:dictyBase" ; - oboInOwl:hasDefinition "Name of a gene from dictyBase database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:dictyBase" ; + ns2:hasDefinition "Name of a gene from dictyBase database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1786 a owl:Class ; +ns1:data_1786 a owl:Class ; rdfs:label "Gene name (EcoGene primary)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ECOGENE_G" ; - oboInOwl:hasDefinition "Primary name of a gene from EcoGene Database." ; - oboInOwl:hasExactSynonym "EcoGene primary gene name" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ECOGENE_G" ; + ns2:hasDefinition "Primary name of a gene from EcoGene Database." ; + ns2:hasExactSynonym "EcoGene primary gene name" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1787 a owl:Class ; +ns1:data_1787 a owl:Class ; rdfs:label "Gene name (MaizeGDB)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:MaizeGDB_Locus" ; - oboInOwl:hasDefinition "Name of a gene from MaizeGDB (maize genes) database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:MaizeGDB_Locus" ; + ns2:hasDefinition "Name of a gene from MaizeGDB (maize genes) database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1788 a owl:Class ; +ns1:data_1788 a owl:Class ; rdfs:label "Gene name (SGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:SGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Saccharomyces Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:SGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Saccharomyces Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1789 a owl:Class ; +ns1:data_1789 a owl:Class ; rdfs:label "Gene name (TGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:TGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Tetrahymena Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:TGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Tetrahymena Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1790 a owl:Class ; +ns1:data_1790 a owl:Class ; rdfs:label "Gene name (CGSC)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGSC" ; - oboInOwl:hasDefinition "Symbol of a gene from E.coli Genetic Stock Center." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGSC" ; + ns2:hasDefinition "Symbol of a gene from E.coli Genetic Stock Center." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1791 a owl:Class ; +ns1:data_1791 a owl:Class ; rdfs:label "Gene name (HGNC)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - :regex "HGNC:[0-9]{1,5}" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: HGNC_gene" ; - oboInOwl:hasDefinition "Symbol of a gene approved by the HUGO Gene Nomenclature Committee." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns1:regex "HGNC:[0-9]{1,5}" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: HGNC_gene" ; + ns2:hasDefinition "Symbol of a gene approved by the HUGO Gene Nomenclature Committee." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1792 a owl:Class ; +ns1:data_1792 a owl:Class ; rdfs:label "Gene name (MGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - :regex "MGI:[0-9]+" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: MGD" ; - oboInOwl:hasDefinition "Symbol of a gene from the Mouse Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns1:regex "MGI:[0-9]+" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: MGD" ; + ns2:hasDefinition "Symbol of a gene from the Mouse Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1793 a owl:Class ; +ns1:data_1793 a owl:Class ; rdfs:label "Gene name (Bacillus subtilis)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SUBTILISTG" ; - oboInOwl:hasDefinition "Symbol of a gene from Bacillus subtilis Genome Sequence Project." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SUBTILISTG" ; + ns2:hasDefinition "Symbol of a gene from Bacillus subtilis Genome Sequence Project." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1794 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1796 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB" ; + ns2:hasDefinition "Identifier of a gene from PlasmoDB Plasmodium Genome Resource." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1796 a owl:Class ; rdfs:label "Gene ID (FlyBase)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: FB", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1797 a owl:Class ; + ns2:hasDefinition "Gene identifier from FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1797 a owl:Class ; rdfs:label "Gene ID (GeneDB Glossina morsitans)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1035 ; - oboInOwl:hasDefinition "Gene identifier from Glossina morsitans GeneDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDefinition "Gene identifier from Glossina morsitans GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1798 a owl:Class ; +ns1:data_1798 a owl:Class ; rdfs:label "Gene ID (GeneDB Leishmania major)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1035 ; - oboInOwl:hasDefinition "Gene identifier from Leishmania major GeneDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDefinition "Gene identifier from Leishmania major GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1799 a owl:Class ; +ns1:data_1799 a owl:Class ; rdfs:label "Gene ID (GeneDB Plasmodium falciparum)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum" ; + ns2:hasDefinition "Gene identifier from Plasmodium falciparum GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1800 a owl:Class ; +ns1:data_1800 a owl:Class ; rdfs:label "Gene ID (GeneDB Schizosaccharomyces pombe)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe" ; + ns2:hasDefinition "Gene identifier from Schizosaccharomyces pombe GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1801 a owl:Class ; +ns1:data_1801 a owl:Class ; rdfs:label "Gene ID (GeneDB Trypanosoma brucei)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei" ; + ns2:hasDefinition "Gene identifier from Trypanosoma brucei GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1802 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1803 a owl:Class ; + ns2:hasDefinition "Gene identifier from Gramene database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1804 a owl:Class ; + ns2:hasDefinition "Gene identifier from Virginia Bioinformatics Institute microbial database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1805 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SGN" ; + ns2:hasDefinition "Gene identifier from Sol Genomics Network." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "WBGene[0-9]{8}" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2113, - :data_2295 . - -:data_1806 a owl:Class ; + ns2:hasDefinition "Gene identifier used by WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2113, + ns1:data_2295 . + +ns1:data_1806 a owl:Class ; rdfs:label "Gene synonym" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Any name (other than the recommended one) for a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Any name (other than the recommended one) for a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1807 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2795 . - -:data_1852 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of an open reading frame attributed by a sequencing project." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2795 . + +ns1:data_1852 a owl:Class ; rdfs:label "Sequence assembly component" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0925 ; - oboInOwl:hasDefinition "A component of a larger sequence assembly." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0925 ; + ns2:hasDefinition "A component of a larger sequence assembly." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1853 a owl:Class ; +ns1:data_1853 a owl:Class ; rdfs:label "Chromosome annotation (aberration)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0919 ; - oboInOwl:hasDefinition "A report on a chromosome aberration such as abnormalities in chromosome structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0919 ; + ns2:hasDefinition "A report on a chromosome aberration such as abnormalities in chromosome structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1856 a owl:Class ; +ns1:data_1856 a owl:Class ; rdfs:label "PDB insertion code" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_ins_code", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1016 . + ns2:hasDefinition "An insertion code (part of the residue number) for an amino acid residue from a PDB file." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1016 . -:data_1857 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PDBx_occupancy" ; + ns2:hasDefinition "The fraction of an atom type present at a site in a molecular structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1917 . -:data_1858 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1917 . - -:data_1859 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PDBx_B_iso_or_equiv" ; + ns2:hasDefinition "Isotropic B factor (atomic displacement parameter) for an atom from a PDB file." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1917 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type." ; + ns2:hasExactSynonym "Deletion-based cytogenetic map" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1283 . -:data_1860 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1278 . - -:data_1864 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers." ; + ns2:hasExactSynonym "Quantitative trait locus map" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1278 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_2019 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_2019 ; + ns2:hasDefinition "Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2019 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1865 a owl:Class ; +ns1:data_1865 a owl:Class ; rdfs:label "Map feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1255, + ns1:data_1276, + ns1:data_2019 ; + ns2:hasDefinition "A feature which may mapped (positioned) on a genetic or other type of map." ; + ns2:inSubset ns4: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 ; +ns1:data_1866 a owl:Class ; rdfs:label "Map type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A designation of the type of map (genetic map, physical map, sequence map etc) or map set." ; + ns2:inSubset ns4: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 ; +ns1:data_1867 a owl:Class ; rdfs:label "Protein fold name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a protein fold." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_1872 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a protein fold." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1:data_1872 a owl:Class ; rdfs:label "Taxonomic classification" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GCP_Taxon", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature." ; + ns2:hasExactSynonym "Taxonomic information", "Taxonomic name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2909 . -:data_1873 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2908 . - -:data_1874 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:iHOPorganism" ; + ns2:hasDefinition "A unique identifier for an organism used in the iHOP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2908 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2909 . - -:data_1875 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Common name for an organism as used in the GenBank database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2909 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1877 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a taxon from the NCBI taxonomy database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1:data_1877 a owl:Class ; rdfs:label "Synonym" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "An alternative for a word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "An alternative for a word." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1878 a owl:Class ; +ns1:data_1878 a owl:Class ; rdfs:label "Misspelling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "A common misspelling of a word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "A common misspelling of a word." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1879 a owl:Class ; +ns1:data_1879 a owl:Class ; rdfs:label "Acronym" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "An abbreviation of a phrase or word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "An abbreviation of a phrase or word." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1880 a owl:Class ; +ns1:data_1880 a owl:Class ; rdfs:label "Misnomer" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "A term which is likely to be misleading of its meaning." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "A term which is likely to be misleading of its meaning." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1882 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1881 . - -:data_1884 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier representing an author in the DragonDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1881 . + +ns1:data_1884 a owl:Class ; rdfs:label "UniProt keywords" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1885 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1886 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:GENEFARM_GeneID" ; + ns2:hasDefinition "Identifier of a gene from the GeneFarm database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1887 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:Blattner_number" ; + ns2:hasDefinition "The blattner identifier for a gene." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1887 a owl:Class ; rdfs:label "Gene ID (MIPS Maize)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2285 ; - oboInOwl:hasDbXref "Moby_namespace:MIPS_GE_Maize" ; - oboInOwl:hasDefinition "Identifier for genetic elements in MIPS Maize database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2285 ; + ns2:hasDbXref "Moby_namespace:MIPS_GE_Maize" ; + ns2:hasDefinition "Identifier for genetic elements in MIPS Maize database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1888 a owl:Class ; +ns1:data_1888 a owl:Class ; rdfs:label "Gene ID (MIPS Medicago)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2285 ; - oboInOwl:hasDbXref "Moby_namespace:MIPS_GE_Medicago" ; - oboInOwl:hasDefinition "Identifier for genetic elements in MIPS Medicago database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2285 ; + ns2:hasDbXref "Moby_namespace:MIPS_GE_Medicago" ; + ns2:hasDefinition "Identifier for genetic elements in MIPS Medicago database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1889 a owl:Class ; +ns1:data_1889 a owl:Class ; rdfs:label "Gene name (DragonDB)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "Moby_namespace:DragonDB_Gene" ; - oboInOwl:hasDefinition "The name of an Antirrhinum Gene from the DragonDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "Moby_namespace:DragonDB_Gene" ; + ns2:hasDefinition "The name of an Antirrhinum Gene from the DragonDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1890 a owl:Class ; +ns1:data_1890 a owl:Class ; rdfs:label "Gene name (Arabidopsis)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1891 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109, - :data_2295, - :data_2907 . - -:data_1892 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:iHOPsymbol" ; + ns2:hasDefinition "A unique identifier of a protein or gene used in the iHOP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2295, + ns1:data_2907 . + +ns1:data_1892 a owl:Class ; rdfs:label "Gene name (GeneFarm)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of a gene from the GeneFarm database." ; - oboInOwl:hasExactSynonym "GeneFarm gene ID" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of a gene from the GeneFarm database." ; + ns2:hasExactSynonym "GeneFarm gene ID" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1895 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "AT[1-5]G[0-9]{5}" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode" ; + ns2:hasDefinition "Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases)" ; + ns2:hasExactSynonym "AGI ID", "AGI identifier", "AGI locus code", "Arabidopsis gene loci number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . -:data_1896 a owl:Class ; +ns1:data_1896 a owl:Class ; rdfs:label "Locus ID (ASPGD)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1897 a owl:Class ; + ns2:hasDefinition "Identifier for loci from ASPGD (Aspergillus Genome Database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1898 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG" ; + ns2:hasDefinition "Identifier for loci from Magnaporthe grisea Database at the Broad Institute." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1898 a owl:Class ; rdfs:label "Locus ID (CGD)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGD", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Identifier for loci from CGD (Candida Genome Database)." ; + ns2:hasExactSynonym "CGD locus identifier", "CGDID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . -:data_1899 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1900 a owl:Class ; + ns2:hasDefinition "Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1900 a owl:Class ; rdfs:label "NCBI locus tag" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:LocusID", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1901 a owl:Class ; + ns2:hasDefinition "Identifier for loci from NCBI database." ; + ns2:hasExactSynonym "Locus ID (NCBI)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1901 a owl:Class ; rdfs:label "Locus ID (SGD)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SGD", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091, - :data_2632 . - -:data_1902 a owl:Class ; + ns2:hasDefinition "Identifier for loci from SGD (Saccharomyces Genome Database)." ; + ns2:hasExactSynonym "SGDID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091, + ns1:data_2632 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1903 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:MMP_Locus" ; + ns2:hasDefinition "Identifier of loci from Maize Mapping Project." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1904 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:DDB_gene" ; + ns2:hasDefinition "Identifier of locus from DictyBase (Dictyostelium discoideum)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1904 a owl:Class ; rdfs:label "Locus ID (EntrezGene)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:EntrezGene_EntrezGeneID", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:EntrezGene_EntrezGeneID", "Moby_namespace:EntrezGene_ID" ; - oboInOwl:hasDefinition "Identifier of a locus from EntrezGene database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1905 a owl:Class ; + ns2:hasDefinition "Identifier of a locus from EntrezGene database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1906 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:MaizeGDB_Locus" ; + ns2:hasDefinition "Identifier of locus from MaizeGDB (Maize genome database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1906 a owl:Class ; rdfs:label "Quantitative trait locus" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2012 ; + ns2:hasDbXref "Moby:SO_QTL" ; + ns2: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)." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1908 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:GeneId" ; + ns2:hasDefinition "Identifier of a gene from the KOME database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_2007 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Tropgene_locus" ; + ns2:hasDefinition "Identifier of a locus from the Tropgene database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_2007 a owl:Class ; rdfs:label "UniProt keyword" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:SP_KW", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0968 . + ns2:hasDefinition "A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0968 . -:data_2009 a owl:Class ; +ns1:data_2009 a owl:Class ; rdfs:label "Ordered locus name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1893 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2018 a owl:Class ; +ns1:data_2018 a owl:Class ; rdfs:label "Annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2048 ; + ns2: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." ; + ns2:inSubset ns4: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 ; +ns1:data_2022 a owl:Class ; rdfs:label "Vienna RNA structural data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1465 ; - oboInOwl:hasDefinition "Data used by the Vienna RNA analysis package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1465 ; + ns2:hasDefinition "Data used by the Vienna RNA analysis package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2023 a owl:Class ; +ns1:data_2023 a owl:Class ; rdfs:label "Sequence mask parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Data used to replace (mask) characters in a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Data used to replace (mask) characters in a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2025 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_2026 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_2028 a owl:Class ; +ns1:data_2028 a owl:Class ; rdfs:label "Experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2531, - :data_3108 ; - oboInOwl:hasDefinition "Raw data from or annotation on laboratory experiments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2531, + ns1:data_3108 ; + ns2:hasDefinition "Raw data from or annotation on laboratory experiments." ; + ns2:inSubset ns4: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 ; +ns1:data_2041 a owl:Class ; rdfs:label "Genome version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2711 ; - oboInOwl:hasDefinition "Information on a genome version." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2711 ; + ns2:hasDefinition "Information on a genome version." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2042 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_2043 a owl:Class ; +ns1:data_2043 a owl:Class ; rdfs:label "Sequence record lite" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2046 a owl:Class ; +ns1:data_2046 a owl:Class ; rdfs:label "Nucleic acid sequence record (lite)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2047 a owl:Class ; +ns1:data_2047 a owl:Class ; rdfs:label "Protein sequence record (lite)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; - oboInOwl:hasExactSynonym "Sequence record lite (protein)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + ns2:hasExactSynonym "Sequence record lite (protein)" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2053 a owl:Class ; +ns1:data_2053 a owl:Class ; rdfs:label "Structural data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0883, - :data_2085 ; - oboInOwl:hasDefinition "Data concerning molecular structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0883, + ns1:data_2085 ; + ns2:hasDefinition "Data concerning molecular structural data." ; + ns2:inSubset ns4: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A nucleotide sequence motif." ; + ns2:hasExactSynonym "Nucleic acid sequence motif" ; + ns2:hasNarrowSynonym "DNA sequence motif", "RNA sequence motif" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1353 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1353 . -:data_2079 a owl:Class ; +ns1:data_2079 a owl:Class ; rdfs:label "Search parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Some simple value controlling a search operation, typically a search of a database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Some simple value controlling a search operation, typically a search of a database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2081 a owl:Class ; +ns1:data_2081 a owl:Class ; rdfs:label "Secondary structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0883 ; - oboInOwl:hasDefinition "The secondary structure assignment (predicted or real) of a nucleic acid or protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0883 ; + ns2:hasDefinition "The secondary structure assignment (predicted or real) of a nucleic acid or protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2086 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:operation_0912 ; + ns2:consider ns1:data_0912, + ns1:data_3128 ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2090 a owl:Class ; +ns1:data_2090 a owl:Class ; rdfs:label "Database entry version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0957 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2092 a owl:Class ; +ns1:data_2092 a owl:Class ; rdfs:label "SNP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "single nucleotide polymorphism (SNP) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "single nucleotide polymorphism (SNP) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2098 a owl:Class ; +ns1:data_2098 a owl:Class ; rdfs:label "Job identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a submitted job." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a submitted job." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:seeAlso "http://wsio.org/data_009" ; - rdfs:subClassOf :data_0976 . + rdfs:subClassOf ns1:data_0976 . -:data_2100 a owl:Class ; +ns1:data_2100 a owl:Class ; rdfs:label "Type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.org/dc/elements/1.1/type" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2102 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2909 . - -:data_2103 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A three-letter code used in the KEGG databases to uniquely identify organisms." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2909 . + +ns1:data_2103 a owl:Class ; rdfs:label "Gene name (KEGG GENES)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - :regex "[a-zA-Z_0-9]+:[a-zA-Z_0-9\\.-]*" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "Moby_namespace:GeneId" ; - oboInOwl:hasDefinition "Name of an entry (gene) from the KEGG GENES database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns1:regex "[a-zA-Z_0-9]+:[a-zA-Z_0-9\\.-]*" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "Moby_namespace:GeneId" ; + ns2:hasDefinition "Name of an entry (gene) from the KEGG GENES database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2105 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a compound from the BioCyc chemical compounds database." ; + ns2:hasExactSynonym "BioCyc compound ID", "BioCyc compound identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2894 . - -:data_2106 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2108 . - -:data_2107 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a biological reaction from the BioCyc reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2321 . - -:data_2112 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an enzyme from the BioCyc enzymes database." ; + ns2:hasExactSynonym "BioCyc enzyme ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2321 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1089 . - -:data_2114 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Primary identifier of an object from the FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1089 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2113, - :data_2907 . - -:data_2116 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "CE[0-9]{5}" ; + ns2:hasDefinition "Protein identifier used by WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2113, + ns1:data_2907 . + +ns1:data_2116 a owl:Class ; rdfs:label "Nucleic acid features (codon)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2126 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:data_2534 ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2128 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2127 . - -:data_2130 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Informal name for a genetic code, typically an organism name." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2127 . + +ns1:data_2130 a owl:Class ; rdfs:label "Sequence profile type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2131 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_2132 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a computer operating system such as Linux, PC or Mac." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1:data_2132 a owl:Class ; rdfs:label "Mutation type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2538 ; - oboInOwl:hasDefinition "A type of point or block mutation, including insertion, deletion, change, duplication and moves." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2538 ; + ns2:hasDefinition "A type of point or block mutation, including insertion, deletion, change, duplication and moves." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2133 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_2134 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A logical operator such as OR, AND, XOR, and NOT." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1:data_2134 a owl:Class ; rdfs:label "Results sort order" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A control of the order of data that is output, for example the order of sequences in an alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_2135 a owl:Class ; rdfs:label "Toggle" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "A simple parameter that is a toggle (boolean value), typically a control for a modal tool." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A simple parameter that is a toggle (boolean value), typically a control for a modal tool." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2136 a owl:Class ; +ns1:data_2136 a owl:Class ; rdfs:label "Sequence width" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "The width of an output sequence or alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "The width of an output sequence or alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2140 a owl:Class ; +ns1:data_2140 a owl:Class ; rdfs:label "Concentration" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The concentration of a chemical compound." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The concentration of a chemical compound." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . -:data_2141 a owl:Class ; +ns1:data_2141 a owl:Class ; rdfs:label "Window step size" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Size of the incremental 'step' a sequence window is moved over a sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Size of the incremental 'step' a sequence window is moved over a sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2142 a owl:Class ; +ns1:data_2142 a owl:Class ; rdfs:label "EMBOSS graph" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2968 ; - oboInOwl:hasDefinition "An image of a graph generated by the EMBOSS suite." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2968 ; + ns2:hasDefinition "An image of a graph generated by the EMBOSS suite." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2143 a owl:Class ; +ns1:data_2143 a owl:Class ; rdfs:label "EMBOSS report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "An application report generated by the EMBOSS suite." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "An application report generated by the EMBOSS suite." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2145 a owl:Class ; +ns1:data_2145 a owl:Class ; rdfs:label "Sequence offset" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "An offset for a single-point sequence position." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "An offset for a single-point sequence position." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2146 a owl:Class ; +ns1:data_2146 a owl:Class ; rdfs:label "Threshold" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1772 ; - oboInOwl:hasDefinition "A value that serves as a threshold for a tool (usually to control scoring or output)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1772 ; + ns2:hasDefinition "A value that serves as a threshold for a tool (usually to control scoring or output)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2147 a owl:Class ; +ns1:data_2147 a owl:Class ; rdfs:label "Protein report (transcription factor)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "An informative report on a transcription factor protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on a transcription factor protein." ; + ns2:inSubset ns4: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 ; +ns1:data_2149 a owl:Class ; rdfs:label "Database category name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a category of biological or bioinformatics database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a category of biological or bioinformatics database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2150 a owl:Class ; +ns1:data_2150 a owl:Class ; rdfs:label "Sequence profile name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1115 ; - oboInOwl:hasDefinition "Name of a sequence profile." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1115 ; + ns2:hasDefinition "Name of a sequence profile." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2151 a owl:Class ; +ns1:data_2151 a owl:Class ; rdfs:label "Color" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Specification of one or more colors." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Specification of one or more colors." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2152 a owl:Class ; +ns1:data_2152 a owl:Class ; rdfs:label "Rendering parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "A parameter that is used to control rendering (drawing) to a device or image." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A parameter that is used to control rendering (drawing) to a device or image." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2156 a owl:Class ; +ns1:data_2156 a owl:Class ; rdfs:label "Date" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "A temporal date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A temporal date." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2157 a owl:Class ; +ns1:data_2157 a owl:Class ; rdfs:label "Word composition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1266, - :data_1268 ; - oboInOwl:hasDefinition "Word composition data for a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1266, + ns1:data_1268 ; + ns2:hasDefinition "Word composition data for a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2160 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2884 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2884 . -:data_2163 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Useful for highlighting amphipathicity and other properties." ; - rdfs:subClassOf :data_1709 . + rdfs:subClassOf ns1:data_1709 . -:data_2164 a owl:Class ; +ns1:data_2164 a owl:Class ; rdfs:label "Protein sequence properties plot" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0897 ; - oboInOwl:hasDefinition "A plot of general physicochemical properties of a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0897 ; + ns2:hasDefinition "A plot of general physicochemical properties of a protein sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2165 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897, - :data_2884 . - -:data_2166 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of pK versus pH for a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897, + ns1:data_2884 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2884 . - -:data_2167 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of character or word composition / frequency of a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2884 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2884 . - -:data_2168 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Density plot (of base composition) for a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2884 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2969 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2969 . -:data_2169 a owl:Class ; +ns1:data_2169 a owl:Class ; rdfs:label "Nucleic acid features (siRNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1276 ; - oboInOwl:hasDefinition "A report on siRNA duplexes in mRNA." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "A report on siRNA duplexes in mRNA." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2173 a owl:Class ; +ns1:data_2173 a owl:Class ; rdfs:label "Sequence set (stream)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Secondary identifier of an object from the FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1089 . -:data_2176 a owl:Class ; +ns1:data_2176 a owl:Class ; rdfs:label "Cardinality" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "The number of a certain thing." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "The number of a certain thing." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2177 a owl:Class ; +ns1:data_2177 a owl:Class ; rdfs:label "Exactly 1" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "A single thing." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "A single thing." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2178 a owl:Class ; +ns1:data_2178 a owl:Class ; rdfs:label "1 or more" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "One or more things." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "One or more things." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2179 a owl:Class ; +ns1:data_2179 a owl:Class ; rdfs:label "Exactly 2" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Exactly two things." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Exactly two things." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2180 a owl:Class ; +ns1:data_2180 a owl:Class ; rdfs:label "2 or more" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Two or more things." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Two or more things." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2191 a owl:Class ; +ns1:data_2191 a owl:Class ; rdfs:label "Protein features report (chemical modifications)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "chemical modification of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "chemical modification of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2192 a owl:Class ; +ns1:data_2192 a owl:Class ; rdfs:label "Error" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Data on an error generated by computer system or tool." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Data on an error generated by computer system or tool." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2193 a owl:Class ; +ns1:data_2193 a owl:Class ; rdfs:label "Database entry metadata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Basic information on any arbitrary database entry." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information on any arbitrary database entry." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_2198 a owl:Class ; +ns1:data_2198 a owl:Class ; rdfs:label "Gene cluster" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1246 ; - oboInOwl:hasDefinition "A cluster of similar genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1246 ; + ns2:hasDefinition "A cluster of similar genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2201 a owl:Class ; +ns1:data_2201 a owl:Class ; rdfs:label "Sequence record full" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2208 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2119 . - -:data_2209 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a plasmid in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2119 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2538 . - -:data_2212 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique identifier of a specific mutation catalogued in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2538 . + +ns1:data_2212 a owl:Class ; rdfs:label "Mutation annotation (basic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2213 a owl:Class ; +ns1:data_2213 a owl:Class ; rdfs:label "Mutation annotation (prevalence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2214 a owl:Class ; +ns1:data_2214 a owl:Class ; rdfs:label "Mutation annotation (prognostic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2215 a owl:Class ; +ns1:data_2215 a owl:Class ; rdfs:label "Mutation annotation (functional)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2216 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1016 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The number of a codon, for instance, at which a mutation is located." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1016 . -:data_2217 a owl:Class ; +ns1:data_2217 a owl:Class ; rdfs:label "Tumor annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1622 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2218 a owl:Class ; +ns1:data_2218 a owl:Class ; rdfs:label "Server metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Basic information about a server on the web, such as an SRS server." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Basic information about a server on the web, such as an SRS server." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2219 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_2220 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a field in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . - -:data_2223 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a sequence cluster from the SYSTERS database." ; + ns2:hasExactSynonym "SYSTERS cluster ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . + +ns1:data_2223 a owl:Class ; rdfs:label "Ontology metadata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concerning a biological ontology." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning a biological ontology." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0089 ], - :data_2337 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:data_2337 . -:data_2235 a owl:Class ; +ns1:data_2235 a owl:Class ; rdfs:label "Raw SCOP domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Raw SCOP domain classification data files." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Raw SCOP domain classification data files." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "These are the parsable data files provided by SCOP." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2236 a owl:Class ; +ns1:data_2236 a owl:Class ; rdfs:label "Raw CATH domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Raw CATH domain classification data files." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Raw CATH domain classification data files." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "These are the parsable data files provided by CATH." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2240 a owl:Class ; +ns1:data_2240 a owl:Class ; rdfs:label "Heterogen annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2242 a owl:Class ; +ns1:data_2242 a owl:Class ; rdfs:label "Phylogenetic property values" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0871 ; - oboInOwl:hasDefinition "Phylogenetic property values data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0871 ; + ns2:hasDefinition "Phylogenetic property values data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2245 a owl:Class ; +ns1:data_2245 a owl:Class ; rdfs:label "Sequence set (bootstrapped)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "A collection of sequences output from a bootstrapping (resampling) procedure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "A collection of sequences output from a bootstrapping (resampling) procedure." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Bootstrapping is often performed in phylogenetic analysis." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2247 a owl:Class ; +ns1:data_2247 a owl:Class ; rdfs:label "Phylogenetic consensus tree" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0872 ; - oboInOwl:hasDefinition "A consensus phylogenetic tree derived from comparison of multiple trees." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0872 ; + ns2:hasDefinition "A consensus phylogenetic tree derived from comparison of multiple trees." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2248 a owl:Class ; +ns1:data_2248 a owl:Class ; rdfs:label "Schema" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A data schema for organising or transforming data of some type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A data schema for organising or transforming data of some type." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2249 a owl:Class ; +ns1:data_2249 a owl:Class ; rdfs:label "DTD" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A DTD (document type definition)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A DTD (document type definition)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2250 a owl:Class ; +ns1:data_2250 a owl:Class ; rdfs:label "XML Schema" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "An XML Schema." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "An XML Schema." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2251 a owl:Class ; +ns1:data_2251 a owl:Class ; rdfs:label "Relax-NG schema" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A relax-NG schema." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A relax-NG schema." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2252 a owl:Class ; +ns1:data_2252 a owl:Class ; rdfs:label "XSLT stylesheet" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "An XSLT stylesheet." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "An XSLT stylesheet." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2254 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2129 . - -:data_2288 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an OBO file format such as OBO-XML, plain and so on." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2129 . + +ns1:data_2288 a owl:Class ; rdfs:label "Sequence identifier (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1096 ; - oboInOwl:hasDefinition "An identifier of protein sequence(s) or protein sequence database entries." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1096 ; + ns2:hasDefinition "An identifier of protein sequence(s) or protein sequence database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2289 a owl:Class ; +ns1:data_2289 a owl:Class ; rdfs:label "Sequence identifier (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1097 ; - oboInOwl:hasDefinition "An identifier of nucleotide sequence(s) or nucleotide sequence database entries." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1097 ; + ns2:hasDefinition "An identifier of nucleotide sequence(s) or nucleotide sequence database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2290 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An accession number of an entry from the EMBL sequence database." ; + ns2:hasExactSynonym "EMBL ID", "EMBL accession number", "EMBL identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1103 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1103 . -:data_2291 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a polypeptide in the UniProt database." ; + ns2:hasExactSynonym "UniProt entry name", "UniProt identifier", "UniProtKB entry name", "UniProtKB identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0849 ], - :data_2154 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0849 ], + ns1:data_2154 . -:data_2293 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Secondary (internal) identifier of a Gramene database entry." ; + ns2:hasExactSynonym "Gramene internal ID", "Gramene internal identifier", "Gramene secondary ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2915 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2915 . -:data_2296 a owl:Class ; +ns1:data_2296 a owl:Class ; rdfs:label "Gene name (AceView)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the AceView genes database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the AceView genes database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2297 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ECK" ; + ns2:hasDefinition "Identifier of an E. coli K-12 gene from EcoGene Database." ; + ns2:hasExactSynonym "E. coli K-12 gene identifier", "ECK accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1795 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1795 . -:data_2298 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2300 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for a gene approved by the HUGO Gene Nomenclature Committee." ; + ns2:hasExactSynonym "HGNC ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2300 a owl:Class ; rdfs:label "Gene name (NCBI)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the NCBI genes database." ; - oboInOwl:hasExactSynonym "NCBI gene name" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the NCBI genes database." ; + ns2:hasExactSynonym "NCBI gene name" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2302 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2307 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the STRING database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1:data_2307 a owl:Class ; rdfs:label "Virus annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on a specific virus." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on a specific virus." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2308 a owl:Class ; +ns1:data_2308 a owl:Class ; rdfs:label "Virus annotation (taxonomy)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on the taxonomy of a specific virus." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on the taxonomy of a specific virus." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2315 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "NCBI accession.version", "accession.version" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2362 . -:data_2317 a owl:Class ; +ns1:data_2317 a owl:Class ; rdfs:label "Cell line name (exact)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2318 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1:data_2318 a owl:Class ; rdfs:label "Cell line name (truncated)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2319 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1:data_2319 a owl:Class ; rdfs:label "Cell line name (no punctuation)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2320 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1:data_2320 a owl:Class ; rdfs:label "Cell line name (assonant)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2325 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . - -:data_2326 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an enzyme from the REBASE enzymes database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2895 . - -:data_2327 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "DB[0-9]{5}" ; + ns2:hasDefinition "Unique identifier of a drug from the DrugBank database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2895 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier assigned to NCBI protein sequence records." ; + ns2:hasExactSynonym "protein gi", "protein gi number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2314 . -:data_2335 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1413 . -:data_2336 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:data_2534 ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2340 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2749 . - -:data_2342 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a build of a particular genome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2749 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1082 . - -:data_2343 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a biological pathway or network." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1082 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2091, - :data_2365 . - -:data_2344 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]{2,3}[0-9]{5}" ; + ns2:hasDefinition "Identifier of a pathway from the KEGG pathway database." ; + ns2:hasExactSynonym "KEGG pathway ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2345 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the NCI-Nature pathway database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365, - :data_2917 . - -:data_2347 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a pathway from the ConsensusPathDB pathway database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365, + ns1:data_2917 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef100 database." ; + ns2:hasExactSynonym "UniRef100 cluster id", "UniRef100 entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2346 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2346 . -:data_2348 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef90 database." ; + ns2:hasExactSynonym "UniRef90 cluster id", "UniRef90 entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2346 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2346 . -:data_2349 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef50 database." ; + ns2:hasExactSynonym "UniRef50 cluster id", "UniRef50 entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2346 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2346 . -:data_2356 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2355 . - -:data_2357 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Stable accession number of an entry (RNA family) from the RFAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2355 . + +ns1:data_2357 a owl:Class ; rdfs:label "Protein signature type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2358 a owl:Class ; +ns1:data_2358 a owl:Class ; rdfs:label "Domain-nucleic acid interaction report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0906 ; - oboInOwl:hasDefinition "An informative report on protein domain-DNA/RNA interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "An informative report on protein domain-DNA/RNA interaction(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2359 a owl:Class ; +ns1:data_2359 a owl:Class ; rdfs:label "Domain-domain interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_0906 ; - oboInOwl:hasDefinition "An informative report on protein domain-protein domain interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "An informative report on protein domain-protein domain interaction(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2360 a owl:Class ; +ns1:data_2360 a owl:Class ; rdfs:label "Domain-domain interaction (indirect)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0906 ; - oboInOwl:hasDefinition "Data on indirect protein domain-protein domain interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "Data on indirect protein domain-protein domain interaction(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2363 a owl:Class ; +ns1:data_2363 a owl:Class ; rdfs:label "2D PAGE data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "Data concerning two-dimensional polygel electrophoresis." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "Data concerning two-dimensional polygel electrophoresis." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_2364 a owl:Class ; rdfs:label "2D PAGE report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2368 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2369 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an exon from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2370 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an intron from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2371 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a polyA signal from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2372 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a transcription start site from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1:data_2372 a owl:Class ; rdfs:label "2D PAGE spot report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2374 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2373 . - -:data_2375 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2373 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2373 . - -:data_2378 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2373 . + +ns1:data_2378 a owl:Class ; rdfs:label "Protein-motif interaction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2380 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2381 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of an item from the CABRI database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2381 a owl:Class ; rdfs:label "Experiment report (genotyping)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2383 a owl:Class ; +ns1:data_2383 a owl:Class ; rdfs:label "EGA accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the EGA database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2382 . - -:data_2384 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the EGA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2382 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . - -:data_2385 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "IPI[0-9]{8}" ; + ns2:hasDefinition "Identifier of a protein entry catalogued in the International Protein Index (IPI) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1098 . - -:data_2386 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of a protein from the RefSeq database." ; + ns2:hasExactSynonym "RefSeq protein ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1098 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2727 . - -:data_2388 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry (promoter) from the EPD database." ; + ns2:hasExactSynonym "EPD identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2727 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1037 . - -:data_2389 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an Arabidopsis thaliana gene from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1037 . + +ns1:data_2389 a owl:Class ; rdfs:label "UniSTS accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the UniSTS database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2390 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UniSTS database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1:data_2390 a owl:Class ; rdfs:label "UNITE accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the UNITE database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2391 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UNITE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1:data_2391 a owl:Class ; rdfs:label "UTR accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the UTR database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2392 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UTR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "UPI[A-F0-9]{10}" ; + ns2:hasDefinition "Accession number of a UniParc (protein sequence) database entry." ; + ns2:hasExactSynonym "UPI", "UniParc ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . -:data_2393 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2395 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the Rouge or HUGE databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2395 a owl:Class ; rdfs:label "Fungi annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on a specific fungus." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on a specific fungus." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2396 a owl:Class ; +ns1:data_2396 a owl:Class ; rdfs:label "Fungi annotation (anamorph)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on a specific fungus anamorph." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on a specific fungus anamorph." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2398 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the Ensembl database." ; + ns2:hasExactSynonym "Ensembl ID (protein)", "Protein ID (Ensembl)" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2610, - :data_2907 . - -:data_2400 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2610, + ns1:data_2907 . + +ns1:data_2400 a owl:Class ; rdfs:label "Toxin annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report on a specific toxin." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report on a specific toxin." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2401 a owl:Class ; +ns1:data_2401 a owl:Class ; rdfs:label "Protein report (membrane protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1277 ; - oboInOwl:hasDefinition "An informative report on a membrane protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "An informative report on a membrane protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2402 a owl:Class ; +ns1:data_2402 a owl:Class ; rdfs:label "Protein-drug interaction report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "An informative report on tentative or known protein-drug interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1566 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "An informative report on tentative or known protein-drug interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1566 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2522 a owl:Class ; +ns1:data_2522 a owl:Class ; rdfs:label "Map data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1274, - :data_2019 ; - oboInOwl:hasDefinition "Data concerning a map of molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1274, + ns1:data_2019 ; + ns2:hasDefinition "Data concerning a map of molecular sequence(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_2524 a owl:Class ; rdfs:label "Protein data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "Data concerning one or more protein molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "Data concerning one or more protein molecules." ; + ns2:inSubset ns4: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 ; +ns1:data_2525 a owl:Class ; rdfs:label "Nucleic acid data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2084 ; - oboInOwl:hasDefinition "Data concerning one or more nucleic acid molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2084 ; + ns2:hasDefinition "Data concerning one or more nucleic acid molecules." ; + ns2:inSubset ns4: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 ; +ns1:data_2527 a owl:Class ; rdfs:label "Parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Typically a simple numerical or string value that controls the operation of a tool." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Typically a simple numerical or string value that controls the operation of a tool." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2528 a owl:Class ; +ns1:data_2528 a owl:Class ; rdfs:label "Molecular data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2087 ; - oboInOwl:hasDefinition "Data concerning a specific type of molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2087 ; + ns2:hasDefinition "Data concerning a specific type of molecule." ; + ns2:inSubset ns4: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 ; +ns1:data_2529 a owl:Class ; rdfs:label "Molecule report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0896, - :data_2084 ; - oboInOwl:hasDefinition "An informative report on a specific molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0896, + ns1:data_2084 ; + ns2:hasDefinition "An informative report on a specific molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2539 a owl:Class ; +ns1:data_2539 a owl:Class ; rdfs:label "Alignment data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1916, - :data_2083 ; - oboInOwl:hasDefinition "Data concerning an alignment of two or more molecular sequences, structures or derived data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1916, + ns1:data_2083 ; + ns2:hasDefinition "Data concerning an alignment of two or more molecular sequences, structures or derived data." ; + ns2:inSubset ns4: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 ; +ns1:data_2540 a owl:Class ; rdfs:label "Data index data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0955 ; - oboInOwl:hasDefinition "Data concerning an index of data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0955 ; + ns2:hasDefinition "Data concerning an index of data." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1006 . - -:data_2565 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Single letter amino acid identifier, e.g. G." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1006 . - -:data_2578 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Full name of an amino acid, e.g. Glycine." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2897 . - -:data_2579 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a toxin from the ArachnoServer database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2897 . + +ns1:data_2579 a owl:Class ; rdfs:label "Expressed gene list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2872 ; - oboInOwl:hasDefinition "A simple summary of expressed genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2872 ; + ns2:hasDefinition "A simple summary of expressed genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2580 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2581 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a monomer from the BindingDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1:data_2581 a owl:Class ; rdfs:label "GO concept name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2582 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1176 . - -:data_2583 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a 'biological process' concept from the the Gene Ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1176 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1176 . - -:data_2584 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a 'molecular function' concept from the the Gene Ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1176 . + +ns1:data_2584 a owl:Class ; rdfs:label "GO concept name (cellular component)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept for a cellular component from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept for a cellular component from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2586 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3424 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image arising from a Northern Blot experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3424 . -:data_2588 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2587 . - -:data_2589 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a blot from a Northern Blot from the BlotBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2587 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2590 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation." ; + ns2:hasExactSynonym "Hierarchy annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1:data_2590 a owl:Class ; rdfs:label "Hierarchy identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2891 ; - oboInOwl:hasDefinition "Identifier of an entry from a database of biological hierarchies." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2891 ; + ns2:hasDefinition "Identifier of an entry from a database of biological hierarchies." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2591 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2891 . - -:data_2592 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the Brite database of biological hierarchies." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2891 . + +ns1:data_2592 a owl:Class ; rdfs:label "Cancer type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2099 ; - oboInOwl:hasDefinition "A type (represented as a string) of cancer." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2099 ; + ns2:hasDefinition "A type (represented as a string) of cancer." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2593 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2908 . - -:data_2594 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier for an organism used in the BRENDA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2908 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_2595 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a taxon using the controlled vocabulary of the UniGene database." ; + ns2:hasExactSynonym "UniGene organism abbreviation" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_2597 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a taxon using the controlled vocabulary of the UTRdb database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2596 . - -:data_2598 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a catalogue of biological resources from the CABRI database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2596 . + +ns1:data_2598 a owl:Class ; rdfs:label "Secondary structure alignment metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2599 a owl:Class ; +ns1: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" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2601 a owl:Class ; +ns1:data_2601 a owl:Class ; rdfs:label "Small molecule data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "Data concerning one or more small molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "Data concerning one or more small molecules." ; + ns2:inSubset ns4: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 ; +ns1:data_2602 a owl:Class ; rdfs:label "Genotype and phenotype data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0920 ; - oboInOwl:hasDefinition "Data concerning a particular genotype, phenotype or a genotype / phenotype relation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0920 ; + ns2:hasDefinition "Data concerning a particular genotype, phenotype or a genotype / phenotype relation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2605 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "C[0-9]+" ; + ns2:hasDefinition "Unique identifier of a chemical compound from the KEGG database." ; + ns2:hasExactSynonym "KEGG compound ID", "KEGG compound identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2894 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2894 . -:data_2606 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2355 . - -:data_2608 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name (not necessarily stable) an entry (RNA family) from the RFAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2355 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2108 . - -:data_2609 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "R[0-9]+" ; + ns2:hasDefinition "Identifier of a biological reaction from the KEGG reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2091, - :data_2895 . - -:data_2611 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "D[0-9]+" ; + ns2:hasDefinition "Unique identifier of a drug from the KEGG Drug database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2091, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1622 ], - :data_1150, - :data_2091 . - -:data_2612 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[A-Z][0-9]+(\\.[-[0-9]+])?" ; + ns2:hasDefinition "An identifier of a disease from the International Classification of Diseases (ICD) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1622 ], + ns1:data_1150, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\\.[0-9])?" ; + ns2:hasDefinition "Unique identifier of a sequence cluster from the CluSTr database." ; + ns2:hasExactSynonym "CluSTr ID", "CluSTr cluster ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . -:data_2613 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2091, - :data_2900 . - -:data_2614 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "G[0-9]+" ; + ns2:hasDefinition "Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+\\.[A-Z]\\.[0-9]+\\.[0-9]+\\.[0-9]+" ; + ns2:hasDefinition "A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins." ; + ns2:hasExactSynonym "TC number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "OBO file for regular expression." ; - rdfs:subClassOf :data_2091, - :data_2910 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . -:data_2615 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2616 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "MINT\\-[0-9]{1,5}" ; + ns2:hasDefinition "Unique identifier of an entry from the MINT database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2617 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "DIP[\\:\\-][0-9]{3}[EN]" ; + ns2:hasDefinition "Unique identifier of an entry from the DIP database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2619 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "A[0-9]{6}" ; + ns2:hasDefinition "Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2618 . - -:data_2620 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "AA[0-9]{4}" ; + ns2:hasDefinition "Identifier of a protein modification catalogued in the RESID database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2618 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2621 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{4,7}" ; + ns2:hasDefinition "Identifier of an entry from the RGD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2387 . - -:data_2622 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "AASequence:[0-9]{10}" ; + ns2:hasDefinition "Identifier of a protein sequence from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2387 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2625 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "HMDB[0-9]{5}" ; + ns2:hasDefinition "Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB)." ; + ns2:hasExactSynonym "HMDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2905 . - -:data_2626 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})?" ; + ns2:hasDefinition "Identifier of an entry from the LIPID MAPS database." ; + ns2:hasExactSynonym "LM ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2905 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2906 . - -:data_2627 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PAp[0-9]{8}" ; + ns2:hasDbXref "PDBML:pdbx_PDB_strand_id" ; + ns2:hasDefinition "Identifier of a peptide from the PeptideAtlas peptide databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2906 . + +ns1:data_2627 a owl:Class ; rdfs:label "Molecular interaction ID" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "Identifier of a report of molecular interactions from a database (typically)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1074 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "Identifier of a report of molecular interactions from a database (typically)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1074 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2628 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2629 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "A unique identifier of an interaction from the BioGRID database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . - -:data_2631 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "S[0-9]{2}\\.[0-9]{3}" ; + ns2:hasDefinition "Unique identifier of a peptidase enzyme from the MEROPS database." ; + ns2:hasExactSynonym "MEROPS ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2630 . - -:data_2634 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "mge:[0-9]+" ; + ns2:hasDefinition "An identifier of a mobile genetic element from the Aclame database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2630 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2633 . - -:data_2635 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X)" ; + ns2:hasDefinition "The International Standard Book Number (ISBN) is for identifying printed books." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2633 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2636 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "B[0-9]{5}" ; + ns2:hasDefinition "Identifier of a metabolite from the 3DMET database." ; + ns2:hasExactSynonym "3DMET ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2637 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1: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_.*)" ; + ns2:hasDefinition "A unique identifier of an interaction from the MatrixDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2365 . -:data_2638 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976, - :data_2639 . - -:data_2641 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an assay from the PubChem database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976, + ns1:data_2639 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2108 . - -:data_2642 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "M[0-9]{4}" ; + ns2:hasDefinition "Identifier of an enzyme reaction mechanism from the MACie database." ; + ns2:hasExactSynonym "MACie entry number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2108 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "MI[0-9]{7}" ; + ns2:hasDefinition "Identifier for a gene from the miRBase database." ; + ns2:hasExactSynonym "miRNA ID", "miRNA identifier", "miRNA name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . -:data_2643 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2644 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "ZDB\\-GENE\\-[0-9]+\\-[0-9]+" ; + ns2:hasDefinition "Identifier for a gene from the Zebrafish information network genome (ZFIN) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2108 . - -:data_2645 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{5}" ; + ns2:hasDefinition "Identifier of an enzyme-catalysed reaction from the Rhea database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2646 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "UPA[0-9]{5}" ; + ns2:hasDefinition "Identifier of a biological pathway from the Unipathway database." ; + ns2:hasExactSynonym "upaid" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2647 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a small molecular from the ChEMBL database." ; + ns2:hasExactSynonym "ChEMBL ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2648 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+" ; + ns2:hasDefinition "Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2309 . - -:data_2650 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2309 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365, - :data_2649 . - -:data_2651 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365, + ns1:data_2649 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1150, - :data_2091, - :data_2649 . - -:data_2652 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1150, + ns1:data_2091, + ns1:data_2649 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2649, - :data_2895 . - -:data_2653 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2649, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2895 . - -:data_2654 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "DAP[0-9]+" ; + ns2:hasDefinition "Identifier of a drug from the Therapeutic Target Database (TTD)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2656 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "TTDS[0-9]+" ; + ns2:hasDefinition "Identifier of a target protein from the Therapeutic Target Database (TTD)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2893 . - -:data_2657 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "A unique identifier of a neuron from the NeuronDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2893 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2893 . - -:data_2658 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+" ; + ns2:hasDefinition "A unique identifier of a neuron from the NeuroMorpho database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2893 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2659 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a chemical from the ChemIDplus database." ; + ns2:hasExactSynonym "ChemIDplus ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2660 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "SMP[0-9]{5}" ; + ns2:hasDefinition "Identifier of a pathway from the Small Molecule Pathway Database (SMPDB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091 . - -:data_2662 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2897 . - -:data_2664 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "T3D[0-9]+" ; + ns2:hasDefinition "Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2897 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2900 . - -:data_2665 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the GlycomeDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2905 . - -:data_2666 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the LipidBank database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2905 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1038, - :data_2091 . - -:data_2667 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "cd[0-9]{5}" ; + ns2:hasDefinition "Identifier of a conserved domain from the Conserved Domain Database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1038, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1070, - :data_2091 . - -:data_2668 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{1,5}" ; + ns2:hasDefinition "An identifier of an entry from the MMDB database." ; + ns2:hasExactSynonym "MMDB accession" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1070, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2669 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Unique identifier of an entry from the iRefIndex database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2891 . - -:data_2670 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Unique identifier of an entry from the ModelDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2891 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2671 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1:data_2671 a owl:Class ; rdfs:label "Ensembl ID (Homo sapiens)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENS([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENS([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2672 a owl:Class ; +ns1:data_2672 a owl:Class ; rdfs:label "Ensembl ID ('Bos taurus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSBTA([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSBTA([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2673 a owl:Class ; +ns1:data_2673 a owl:Class ; rdfs:label "Ensembl ID ('Canis familiaris')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCAF([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCAF([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2674 a owl:Class ; +ns1:data_2674 a owl:Class ; rdfs:label "Ensembl ID ('Cavia porcellus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCPO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCPO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2675 a owl:Class ; +ns1:data_2675 a owl:Class ; rdfs:label "Ensembl ID ('Ciona intestinalis')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCIN([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCIN([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2676 a owl:Class ; +ns1:data_2676 a owl:Class ; rdfs:label "Ensembl ID ('Ciona savignyi')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCSAV([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCSAV([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2677 a owl:Class ; +ns1:data_2677 a owl:Class ; rdfs:label "Ensembl ID ('Danio rerio')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSDAR([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSDAR([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2678 a owl:Class ; +ns1:data_2678 a owl:Class ; rdfs:label "Ensembl ID ('Dasypus novemcinctus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSDNO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSDNO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2679 a owl:Class ; +ns1:data_2679 a owl:Class ; rdfs:label "Ensembl ID ('Echinops telfairi')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSETE([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSETE([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2680 a owl:Class ; +ns1:data_2680 a owl:Class ; rdfs:label "Ensembl ID ('Erinaceus europaeus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSEEU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSEEU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2681 a owl:Class ; +ns1:data_2681 a owl:Class ; rdfs:label "Ensembl ID ('Felis catus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSFCA([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSFCA([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2682 a owl:Class ; +ns1:data_2682 a owl:Class ; rdfs:label "Ensembl ID ('Gallus gallus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSGAL([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSGAL([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2683 a owl:Class ; +ns1:data_2683 a owl:Class ; rdfs:label "Ensembl ID ('Gasterosteus aculeatus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSGAC([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSGAC([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2684 a owl:Class ; +ns1:data_2684 a owl:Class ; rdfs:label "Ensembl ID ('Homo sapiens')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSHUM([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSHUM([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2685 a owl:Class ; +ns1:data_2685 a owl:Class ; rdfs:label "Ensembl ID ('Loxodonta africana')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSLAF([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSLAF([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2686 a owl:Class ; +ns1:data_2686 a owl:Class ; rdfs:label "Ensembl ID ('Macaca mulatta')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMMU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMMU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2687 a owl:Class ; +ns1:data_2687 a owl:Class ; rdfs:label "Ensembl ID ('Monodelphis domestica')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMOD([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMOD([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2688 a owl:Class ; +ns1:data_2688 a owl:Class ; rdfs:label "Ensembl ID ('Mus musculus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMUS([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMUS([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2689 a owl:Class ; +ns1:data_2689 a owl:Class ; rdfs:label "Ensembl ID ('Myotis lucifugus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMLU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMLU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2690 a owl:Class ; +ns1:data_2690 a owl:Class ; rdfs:label "Ensembl ID (\"Ornithorhynchus anatinus\")" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSOAN([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSOAN([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2691 a owl:Class ; +ns1:data_2691 a owl:Class ; rdfs:label "Ensembl ID ('Oryctolagus cuniculus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSOCU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSOCU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2692 a owl:Class ; +ns1:data_2692 a owl:Class ; rdfs:label "Ensembl ID ('Oryzias latipes')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSORL([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSORL([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2693 a owl:Class ; +ns1:data_2693 a owl:Class ; rdfs:label "Ensembl ID ('Otolemur garnettii')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSSAR([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSSAR([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2694 a owl:Class ; +ns1:data_2694 a owl:Class ; rdfs:label "Ensembl ID ('Pan troglodytes')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSPTR([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSPTR([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2695 a owl:Class ; +ns1:data_2695 a owl:Class ; rdfs:label "Ensembl ID ('Rattus norvegicus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSRNO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSRNO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2696 a owl:Class ; +ns1:data_2696 a owl:Class ; rdfs:label "Ensembl ID ('Spermophilus tridecemlineatus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSSTO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSSTO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2697 a owl:Class ; +ns1:data_2697 a owl:Class ; rdfs:label "Ensembl ID ('Takifugu rubripes')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSFRU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSFRU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2698 a owl:Class ; +ns1:data_2698 a owl:Class ; rdfs:label "Ensembl ID ('Tupaia belangeri')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSTBE([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSTBE([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2699 a owl:Class ; +ns1:data_2699 a owl:Class ; rdfs:label "Ensembl ID ('Xenopus tropicalis')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSXET([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSXET([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2701 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1043 . - -:data_2702 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "2.10.10.10" ; + ns2:hasDefinition "A code number identifying a family from the CATH database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1043 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . - -:data_2704 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an enzyme from the CAZy enzymes database." ; + ns2:hasExactSynonym "CAZy ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence)." ; + ns2:hasExactSynonym "I.M.A.G.E. cloneID", "IMAGE cloneID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1855, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1855, + ns1:data_2091 . -:data_2705 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1176 . - -:data_2706 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a 'cellular component' concept from the Gene Ontology." ; + ns2:hasExactSynonym "GO concept identifier (cellular compartment)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1176 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0987 . - -:data_2709 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a chromosome as used in the BioCyc database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0987 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_2710 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a gene expression profile from the CleanEx database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_2713 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2714 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein complex from the CORUM database." ; + ns2:hasExactSynonym "CORUM complex ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1115, - :data_2091 . - -:data_2715 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a position-specific scoring matrix from the CDD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1115, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2716 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the CuticleDB database." ; + ns2:hasExactSynonym "CuticleDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2911 . - -:data_2719 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a predicted transcription factor from the DBD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2911 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2718 . - -:data_2720 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an oligonucleotide probe from the dbProbe database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2718 . + +ns1:data_2720 a owl:Class ; rdfs:label "Dinucleotide property" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Physicochemical property data for one or more dinucleotides." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Physicochemical property data for one or more dinucleotides." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_2721 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2718 . - -:data_2722 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an dinucleotide property from the DiProDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2718 . + +ns1:data_2722 a owl:Class ; rdfs:label "Protein features report (disordered structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "disordered structure in a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "disordered structure in a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2723 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2724 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the DisProt database." ; + ns2:hasExactSynonym "DisProt ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1:data_2724 a owl:Class ; rdfs:label "Embryo report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1713 ; - oboInOwl:hasDefinition "Annotation on an embryo or concerning embryological development." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1713 ; + ns2:hasDefinition "Annotation on an embryo or concerning embryological development." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2725 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2610, - :data_2769 . - -:data_2726 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a gene transcript from the Ensembl database." ; + ns2:hasExactSynonym "Transcript ID (Ensembl)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2610, + ns1:data_2769 . + +ns1:data_2726 a owl:Class ; rdfs:label "Inhibitor annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report on one or more small molecules that are enzyme inhibitors." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report on one or more small molecules that are enzyme inhibitors." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2729 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2728 . - -:data_2730 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an EST sequence from the COGEME database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2728 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a unisequence from the COGEME database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A unisequence is a single sequence assembled from ESTs." ; - rdfs:subClassOf :data_2091, - :data_2728 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2728 . -:data_2731 a owl:Class ; +ns1:data_2731 a owl:Class ; rdfs:label "Protein family ID (GeneFarm)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; - oboInOwl:hasExactSynonym "GeneFarm family ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2733 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; + ns2:hasExactSynonym "GeneFarm family ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1:data_2733 a owl:Class ; rdfs:label "Genus name (virus)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1870 ; - oboInOwl:hasDefinition "The name of a genus of viruses." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1870 ; + ns2:hasDefinition "The name of a genus of viruses." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2734 a owl:Class ; +ns1:data_2734 a owl:Class ; rdfs:label "Family name (virus)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2732 ; - oboInOwl:hasDefinition "The name of a family of viruses." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2732 ; + ns2:hasDefinition "The name of a family of viruses." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2735 a owl:Class ; +ns1:data_2735 a owl:Class ; rdfs:label "Database name (SwissRegulon)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a SwissRegulon database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a SwissRegulon database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2736 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A feature identifier as used in the SwissRegulon database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1015, + ns1:data_2091 . -:data_2737 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the NMPDR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . -:data_2738 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2739 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the Xenbase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2740 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the Genolist database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2740 a owl:Class ; rdfs:label "Gene name (Genolist)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the Genolist genes database." ; - oboInOwl:hasExactSynonym "Genolist gene name" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the Genolist genes database." ; + ns2:hasExactSynonym "Genolist gene name" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2741 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2727 . - -:data_2742 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry (promoter) from the ABS database." ; + ns2:hasExactSynonym "ABS identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2727 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2911 . - -:data_2743 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a transcription factor from the AraC-XylS database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2911 . + +ns1:data_2743 a owl:Class ; rdfs:label "Gene name (HUGO)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the HUGO database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the HUGO database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2744 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_2745 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a locus from the PseudoCAP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_2746 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a locus from the UTR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2898 . - -:data_2747 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a monosaccharide from the MonosaccharideDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2898 . + +ns1:data_2747 a owl:Class ; rdfs:label "Database name (CMD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a subdivision of the Collagen Mutation Database (CMD) database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a subdivision of the Collagen Mutation Database (CMD) database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2748 a owl:Class ; +ns1:data_2748 a owl:Class ; rdfs:label "Database name (Osteogenesis)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a subdivision of the Osteogenesis database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a subdivision of the Osteogenesis database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2751 a owl:Class ; +ns1:data_2751 a owl:Class ; rdfs:label "GenomeReviews ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An identifier of a particular genome." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2903 . - -:data_2752 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a particular genome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2903 . + +ns1:data_2752 a owl:Class ; rdfs:label "GlycoMap ID" ; - :created_in "beta12orEarlier" ; - :regex "[0-9]+" ; - oboInOwl:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2900 . - -:data_2753 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3425 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A conformational energy map of the glycosidic linkages in a carbohydrate molecule." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3425 . -:data_2755 a owl:Class ; +ns1:data_2755 a owl:Class ; rdfs:label "Transcription factor name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a transcription factor." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009, - :data_1077 . - -:data_2756 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a transcription factor." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009, + ns1:data_1077 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2757 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a membrane transport proteins from the transport classification database (TCDB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1131 . - -:data_2758 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PF[0-9]{5}" ; + ns2:hasDefinition "Name of a domain from the Pfam database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1131 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2759 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "CL[0-9]{4}" ; + ns2:hasDefinition "Accession number of a Pfam clan." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2761 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for a gene from the VectorBase database." ; + ns2:hasExactSynonym "VectorBase ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1114 . - -:data_2763 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1114 . + +ns1:data_2763 a owl:Class ; rdfs:label "Locus annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0916 ; - oboInOwl:hasDefinition "An informative report on a particular locus." ; - oboInOwl:hasExactSynonym "Locus report" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "An informative report on a particular locus." ; + ns2:hasExactSynonym "Locus report" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2764 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009 . - -:data_2765 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Official name of a protein as used in the UniProt database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009 . + +ns1:data_2765 a owl:Class ; rdfs:label "Term ID list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2872 ; - oboInOwl:hasDefinition "One or more terms from one or more controlled vocabularies which are annotations on an entity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2872 ; + ns2:hasDefinition "One or more terms from one or more controlled vocabularies which are annotations on an entity." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2767 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a protein family from the HAMAP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1:data_2767 a owl:Class ; rdfs:label "Identifier with metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2768 a owl:Class ; +ns1:data_2768 a owl:Class ; rdfs:label "Gene symbol annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "Annotation about a gene symbol." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "Annotation about a gene symbol." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2770 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2769 . - -:data_2771 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an RNA transcript from the H-InvDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2769 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2772 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene cluster in the H-InvDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2773 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a antibody from the HPA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2774 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2775 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2775 a owl:Class ; rdfs:label "Kinase name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a kinase protein." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009 . - -:data_2776 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a kinase protein." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2917 . - -:data_2777 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a physical entity from the ConsensusPathDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2917 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2917 . - -:data_2778 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a physical entity from the ConsensusPathDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2917 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2912 . - -:data_2780 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The number of a strain of algae and protozoa from the CCAP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2912 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2779 . - -:data_2781 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A stock number from The Arabidopsis information resource (TAIR)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2779 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2782 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the RNA editing database (REDIdb)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1131 . - -:data_2783 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a domain from the SMART database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1131 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2784 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry (family) from the PANTHER database." ; + ns2:hasExactSynonym "Panther family ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier for a virus from the RNAVirusDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2785 . -:data_2786 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2903 . - -:data_2787 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a genome project assigned by NCBI." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2903 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2903 . - -:data_2788 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of a whole genome assigned by the NCBI." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2903 . + +ns1:data_2788 a owl:Class ; rdfs:label "Sequence profile data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0860 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0860 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2789 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2791 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a membrane protein from the TopDB database." ; + ns2:hasExactSynonym "TopDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2790 . - -:data_2792 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a reference map gel from the SWISS-2DPAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2790 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2793 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a peroxidase protein from the PeroxiBase database." ; + ns2:hasExactSynonym "PeroxiBase ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1072, - :data_2091 . - -:data_2794 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the SISYPHUS database of tertiary structure alignments." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1072, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091, - :data_2795 . - -:data_2796 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an open reading frame (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091, + ns1:data_2795 . + +ns1:data_2796 a owl:Class ; rdfs:label "Linucs ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2900 . - -:data_2797 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2798 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a ligand-gated ion channel protein from the LGICdb database." ; + ns2:hasExactSynonym "LGICdb ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2728 . - -:data_2799 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an EST sequence from the MaizeDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2728 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2800 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the MfunGD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1622 ], - :data_1150, - :data_2091 . - -:data_2802 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a disease from the Orpha database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1622 ], + ns1:data_1150, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2803 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the EcID database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1098, - :data_1855 . - -:data_2804 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of a cDNA molecule catalogued in the RefSeq database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1098, + ns1:data_1855 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2805 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a cone snail toxin protein from the ConoServer database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1:data_2805 a owl:Class ; rdfs:label "GeneSNP ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of a GeneSNP database entry." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_2831 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a GeneSNP database entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1:data_2831 a owl:Class ; rdfs:label "Databank" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A flat-file (textual) data archive." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0957 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A flat-file (textual) data archive." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0957 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2832 a owl:Class ; +ns1:data_2832 a owl:Class ; rdfs:label "Web portal" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A web site providing data (web pages) on a common theme to a HTTP client." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0958 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A web site providing data (web pages) on a common theme to a HTTP client." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0958 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2835 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2836 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for a gene from the VBASE2 database." ; + ns2:hasExactSynonym "VBASE2 ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2785 . - -:data_2837 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier for a virus from the DPVweb database." ; + ns2:hasExactSynonym "DPVweb virus ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2785 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2838 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the BioSystems pathway database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1:data_2838 a owl:Class ; rdfs:label "Experimental data (proteomics)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2531 ; - oboInOwl:hasDefinition "Data concerning a proteomics experiment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2531 ; + ns2:hasDefinition "Data concerning a proteomics experiment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2856 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2855 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Distances (values representing similarity) between a group of molecular structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2855 . -:data_2857 a owl:Class ; +ns1:data_2857 a owl:Class ; rdfs:label "Article metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2526 ; - oboInOwl:hasDefinition "Bibliographic data concerning scientific article(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2526 ; + ns2:hasDefinition "Bibliographic data concerning scientific article(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2866 a owl:Class ; +ns1:data_2866 a owl:Class ; rdfs:label "Northern blot report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Northern Blot experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Northern Blot experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2874 a owl:Class ; +ns1:data_2874 a owl:Class ; rdfs:label "Sequence set (polymorphic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1234 ; + ns2:hasDefinition "A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2875 a owl:Class ; +ns1:data_2875 a owl:Class ; rdfs:label "DRCAT resource" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1883 ; - oboInOwl:hasDefinition "An entry (resource) from the DRCAT bioinformatics resource catalogue." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1883 ; + ns2:hasDefinition "An entry (resource) from the DRCAT bioinformatics resource catalogue." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2878 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1460 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1460 . -:data_2880 a owl:Class ; +ns1:data_2880 a owl:Class ; rdfs:label "Secondary structure image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2992 ; - oboInOwl:hasDefinition "Image of one or more molecular secondary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2992 ; + ns2:hasDefinition "Image of one or more molecular secondary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2881 a owl:Class ; +ns1:data_2881 a owl:Class ; rdfs:label "Secondary structure report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2085 ; - oboInOwl:hasDefinition "An informative report on general information, properties or features of one or more molecular secondary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2085 ; + ns2:hasDefinition "An informative report on general information, properties or features of one or more molecular secondary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2882 a owl:Class ; +ns1:data_2882 a owl:Class ; rdfs:label "DNA features" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1276 ; - oboInOwl:hasDefinition "DNA sequence-specific feature annotation (not in a feature table)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "DNA sequence-specific feature annotation (not in a feature table)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2883 a owl:Class ; +ns1:data_2883 a owl:Class ; rdfs:label "RNA features report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0916 ; - oboInOwl:hasDefinition "Features concerning RNA or regions of DNA that encode an RNA molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "Features concerning RNA or regions of DNA that encode an RNA molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2886 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0849, - :data_2976 . - -:data_2887 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A protein sequence and associated metadata." ; + ns2:hasExactSynonym "Sequence record (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0849, + ns1:data_2976 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A nucleic acid sequence and associated metadata." ; + ns2:hasExactSynonym "Nucleotide sequence record", "Sequence record (nucleic acid)" ; - oboInOwl:hasNarrowSynonym "DNA sequence record", + ns2:hasNarrowSynonym "DNA sequence record", "RNA sequence record" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0849, - :data_2977 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0849, + ns1:data_2977 . -:data_2888 a owl:Class ; +ns1:data_2888 a owl:Class ; rdfs:label "Protein sequence record (full)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2889 a owl:Class ; +ns1:data_2889 a owl:Class ; rdfs:label "Nucleic acid sequence record (full)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2892 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2655 . - -:data_2896 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a type or group of cells." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2655 . + +ns1:data_2896 a owl:Class ; rdfs:label "Toxin name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a toxin." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2576 . - -:data_2899 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a toxin." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2576 . + +ns1:data_2899 a owl:Class ; rdfs:label "Drug name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Common name of a drug." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990, - :data_0993 . - -:data_2904 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Common name of a drug." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990, + ns1:data_0993 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2117 . - -:data_2916 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of a map of a molecular sequence (deposited in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2117 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of an entry from the DDBJ sequence database." ; + ns2:hasExactSynonym "DDBJ ID", "DDBJ accession number", "DDBJ identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1103 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1103 . -:data_2925 a owl:Class ; +ns1:data_2925 a owl:Class ; rdfs:label "Sequence data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular sequence(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_2927 a owl:Class ; rdfs:label "Codon usage" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0914 ; - oboInOwl:hasDefinition "Data concerning codon usage." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0914 ; + ns2:hasDefinition "Data concerning codon usage." ; + ns2:inSubset ns4: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 ; +ns1:data_2954 a owl:Class ; rdfs:label "Article report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0972, + ns1:data_3779 ; + ns2:hasDefinition "Data derived from the analysis of a scientific text such as a full text article from a scientific journal." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2957 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1534, - :data_2884 . - -:data_2958 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A Hopp and Woods plot of predicted antigenicity of a peptide or protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1534, + ns1:data_2884 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583, + ns1:data_2884 ; + ns2:hasDefinition "A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2959 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583 ; + ns2:hasDefinition "A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2960 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583 ; + ns2:hasDefinition "A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2961 a owl:Class ; +ns1:data_2961 a owl:Class ; rdfs:label "Gene regulatory network report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report typically including a map (diagram) of a gene regulatory network." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report typically including a map (diagram) of a gene regulatory network." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2965 a owl:Class ; +ns1:data_2965 a owl:Class ; rdfs:label "2D PAGE gel report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "An informative report on a two-dimensional (2D PAGE) gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "An informative report on a two-dimensional (2D PAGE) gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2966 a owl:Class ; +ns1:data_2966 a owl:Class ; rdfs:label "Oligonucleotide probe sets annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.14" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_2717 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.14" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2717 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2967 a owl:Class ; +ns1:data_2967 a owl:Class ; rdfs:label "Microarray image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2968 ; + ns2:hasDefinition "An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2971 a owl:Class ; +ns1:data_2971 a owl:Class ; rdfs:label "Workflow data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0949 ; - oboInOwl:hasDefinition "Data concerning a computational workflow." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0949 ; + ns2:hasDefinition "Data concerning a computational workflow." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2972 a owl:Class ; +ns1:data_2972 a owl:Class ; rdfs:label "Workflow" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0949 ; - oboInOwl:hasDefinition "A computational workflow." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0949 ; + ns2:hasDefinition "A computational workflow." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2973 a owl:Class ; +ns1:data_2973 a owl:Class ; rdfs:label "Secondary structure data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2085 ; - oboInOwl:hasDefinition "Data concerning molecular secondary structure data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2085 ; + ns2:hasDefinition "Data concerning molecular secondary structure data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2974 a owl:Class ; +ns1: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:hasExactSynonym "Raw amino acid sequence", + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_0848 ; + ns2:hasDefinition "A raw protein sequence (string of characters)." ; + ns2:hasExactSynonym "Raw amino acid sequence", "Raw amino acid sequences", "Raw protein sequence", "Raw sequence (protein)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2976 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2976 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2980 a owl:Class ; +ns1: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" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "An informative report concerning the classification of protein sequences or structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "An informative report concerning the classification of protein sequences or structures." ; + ns2:inSubset ns4: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 ; +ns1:data_2981 a owl:Class ; rdfs:label "Sequence motif data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Data concerning specific or conserved pattern in molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0860 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Data concerning specific or conserved pattern in molecular sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_2982 a owl:Class ; rdfs:label "Sequence profile data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1354 ; - oboInOwl:hasDefinition "Data concerning models representing a (typically multiple) sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1354 ; + ns2:hasDefinition "Data concerning models representing a (typically multiple) sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_2983 a owl:Class ; rdfs:label "Pathway or network data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2600, - :data_2984 ; - oboInOwl:hasDefinition "Data concerning a specific biological pathway or network." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2600, + ns1:data_2984 ; + ns2:hasDefinition "Data concerning a specific biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2986 a owl:Class ; +ns1: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" ; - oboInOwl:consider :data_3148 ; - oboInOwl:hasDefinition "Data concerning the classification of nucleic acid sequences or structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3148 ; + ns2:hasDefinition "Data concerning the classification of nucleic acid sequences or structures." ; + ns2:inSubset ns4: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 ; +ns1:data_2987 a owl:Class ; rdfs:label "Classification report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A report on a classification of molecular sequences, structures or other entities." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A report on a classification of molecular sequences, structures or other entities." ; + ns2:inSubset ns4: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 ; +ns1:data_2989 a owl:Class ; rdfs:label "Protein features report (key folding sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "key residues involved in protein folding." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "key residues involved in protein folding." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2994 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . -:data_3022 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2127 . - -:data_3026 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "16" ; + ns1:regex "[1-9][0-9]?" ; + ns2:hasDefinition "Identifier of a genetic code in the NCBI list of genetic codes." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2127 . + +ns1:data_3026 a owl:Class ; rdfs:label "GO concept name (biological process)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept for a biological process from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept for a biological process from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3027 a owl:Class ; +ns1:data_3027 a owl:Class ; rdfs:label "GO concept name (molecular function)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept for a molecular function from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept for a molecular function from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3028 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning the classification, identification and naming of organisms." ; + ns2:hasExactSynonym "Taxonomic data" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:data_0006 . -:data_3029 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta13" ; + ns2:hasDefinition "EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . -:data_3031 a owl:Class ; +ns1:data_3031 a owl:Class ; rdfs:label "Core data" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0006 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_3085 a owl:Class ; rdfs:label "Protein sequence composition" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1261 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report (typically a table) on character or word composition / frequency of protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1261 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3086 a owl:Class ; +ns1:data_3086 a owl:Class ; rdfs:label "Nucleic acid sequence composition (report)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1261 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1261 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3101 a owl:Class ; +ns1:data_3101 a owl:Class ; rdfs:label "Protein domain classification node" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "A node from a classification of protein structural domain(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "A node from a classification of protein structural domain(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3102 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1002 ; + ns1:created_in "beta13" ; + ns1:deprecation_comment "Duplicates http://edamontology.org/data_1002, hence deprecated." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2895 ; + ns2:hasDefinition "Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1002 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3103 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2895 . - -:data_3104 a owl:Class ; + ns1:created_in "beta13" ; + ns2: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)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086 . - -:data_3105 a owl:Class ; + ns1:created_in "beta13" ; + ns2:hasDefinition "A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA)." ; + ns2:hasExactSynonym "Unique Ingredient Identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086 . + +ns1:data_3105 a owl:Class ; rdfs:label "Geotemporal metadata" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Basic information concerning geographical location or time." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Basic information concerning geographical location or time." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3107 a owl:Class ; +ns1:data_3107 a owl:Class ; rdfs:label "Sequence feature name" ; - :created_in "beta13" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1022 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1022 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3116 a owl:Class ; +ns1:data_3116 a owl:Class ; rdfs:label "Microarray protocol annotation" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Annotation on laboratory and/or data processing protocols used in an microarray experiment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Annotation on laboratory and/or data processing protocols used in an microarray experiment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_3119 a owl:Class ; rdfs:label "Sequence features (compositionally-biased regions)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1261 ; - oboInOwl:hasDefinition "A report of regions in a molecular sequence that are biased to certain characters." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1261 ; + ns2:hasDefinition "A report of regions in a molecular sequence that are biased to certain characters." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3122 a owl:Class ; +ns1:data_3122 a owl:Class ; rdfs:label "Nucleic acid features (difference and change)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:hasDefinition "A report on features in a nucleic acid sequence that indicate changes to or differences between sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:hasDefinition "A report on features in a nucleic acid sequence that indicate changes to or differences between sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3129 a owl:Class ; +ns1:data_3129 a owl:Class ; rdfs:label "Protein features report (repeats)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "short repetitive subsequences (repeat sequences) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "short repetitive subsequences (repeat sequences) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3130 a owl:Class ; +ns1:data_3130 a owl:Class ; rdfs:label "Sequence motif matches (protein)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3131 a owl:Class ; +ns1:data_3131 a owl:Class ; rdfs:label "Sequence motif matches (nucleic acid)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3132 a owl:Class ; +ns1:data_3132 a owl:Class ; rdfs:label "Nucleic acid features (d-loop)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3128 ; - oboInOwl:hasDefinition "A report on displacement loops in a mitochondrial DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3128 ; + ns2:hasDefinition "A report on displacement loops in a mitochondrial DNA sequence." ; + ns2:inSubset ns4: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 ; +ns1:data_3133 a owl:Class ; rdfs:label "Nucleic acid features (stem loop)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3128 ; - oboInOwl:hasDefinition "A report on stem loops in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3128 ; + ns2:hasDefinition "A report on stem loops in a DNA sequence." ; + ns2:inSubset ns4: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 ; +ns1:data_3137 a owl:Class ; rdfs:label "Non-coding RNA" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "features of non-coding or functional RNA molecules, including tRNA and rRNA." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "features of non-coding or functional RNA molecules, including tRNA and rRNA." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3138 a owl:Class ; +ns1:data_3138 a owl:Class ; rdfs:label "Transcriptional features (report)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3134 ; - oboInOwl:hasDefinition "Features concerning transcription of DNA into RNA including the regulation of transcription." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3134 ; + ns2:hasDefinition "Features concerning transcription of DNA into RNA including the regulation of transcription." ; + ns2:inSubset ns4: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 ; +ns1:data_3140 a owl:Class ; rdfs:label "Nucleic acid features (immunoglobulin gene structure)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3141 a owl:Class ; +ns1:data_3141 a owl:Class ; rdfs:label "SCOP class" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'class' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'class' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3142 a owl:Class ; +ns1:data_3142 a owl:Class ; rdfs:label "SCOP fold" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'fold' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'fold' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3143 a owl:Class ; +ns1:data_3143 a owl:Class ; rdfs:label "SCOP superfamily" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'superfamily' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'superfamily' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3144 a owl:Class ; +ns1:data_3144 a owl:Class ; rdfs:label "SCOP family" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'family' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'family' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3145 a owl:Class ; +ns1:data_3145 a owl:Class ; rdfs:label "SCOP protein" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'protein' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'protein' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3146 a owl:Class ; +ns1:data_3146 a owl:Class ; rdfs:label "SCOP species" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'species' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'species' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3147 a owl:Class ; +ns1:data_3147 a owl:Class ; rdfs:label "Mass spectrometry experiment" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "mass spectrometry experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "mass spectrometry experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3154 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2928 ; + ns2:consider ns1:data_0878, + ns1:data_1384, + ns1:data_1481 ; + ns2:hasDefinition "An alignment of protein sequences and/or structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:data_3165 a owl:Class ; +ns1:data_3165 a owl:Class ; rdfs:label "NGS experiment" ; - :created_in "1.0" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "sequencing experiment, including samples, sampling, preparation, sequencing, and analysis." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.0" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "sequencing experiment, including samples, sampling, preparation, sequencing, and analysis." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3231 a owl:Class ; +ns1:data_3231 a owl:Class ; rdfs:label "GWAS report" ; - :created_in "1.1" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Report concerning genome-wide association study experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report concerning genome-wide association study experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3238 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091, - :data_2893 . - -:data_3264 a owl:Class ; + ns1:created_in "1.2" ; + ns1:regex "CL_[0-9]{7}" ; + ns2:hasDefinition "Cell type ontology concept ID." ; + ns2:hasExactSynonym "CL ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091, + ns1:data_2893 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_3265 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Identifier of a COSMIC database entry." ; + ns2:hasExactSynonym "COSMIC identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_3266 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Identifier of a HGMD database entry." ; + ns2:hasExactSynonym "HGMD identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1064 . - -:data_3268 a owl:Class ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of sequence assembly." ; + ns2:hasNarrowSynonym "Sequence assembly version" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1064 . + +ns1:data_3268 a owl:Class ; rdfs:label "Sequence feature type" ; - :created_in "1.3" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3269 a owl:Class ; +ns1:data_3269 a owl:Class ; rdfs:label "Gene homology (report)" ; - :created_in "1.3" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3148 ; - oboInOwl:hasDefinition "An informative report on gene homologues between species." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3148 ; + ns2:hasDefinition "An informative report on gene homologues between species." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3270 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1068, - :data_2091, - :data_2610 . - -:data_3271 a owl:Class ; + ns1:created_in "1.3" ; + ns1:example "ENSGT00390000003602" ; + ns2:hasDefinition "Unique identifier for a gene tree from the Ensembl database." ; + ns2:hasExactSynonym "Ensembl ID (gene tree)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1068, + ns1:data_2091, + ns1:data_2610 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0872 . + ns1:created_in "1.3" ; + ns2:hasDefinition "A phylogenetic tree that is an estimate of the character's phylogeny." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0872 . -:data_3272 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0872 . + ns1:created_in "1.3" ; + ns2:hasDefinition "A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0872 . -:data_3273 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_3113 ], - :data_0976 . - -:data_3274 a owl:Class ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of an entry from a biosample database." ; + ns2:hasExactSynonym "Sample accession" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_3113 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_3275 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Identifier of an object from the MGI database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_3275 a owl:Class ; rdfs:label "Phenotype name" ; - :created_in "1.3" ; - oboInOwl:hasDefinition "Name of a phenotype." ; - oboInOwl:hasExactSynonym "Phenotype", + ns1:created_in "1.3" ; + ns2:hasDefinition "Name of a phenotype." ; + ns2:hasExactSynonym "Phenotype", "Phenotypes" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . -:data_3356 a owl:Class ; +ns1:data_3356 a owl:Class ; rdfs:label "Hidden Markov model"@en ; - :created_in "1.4" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1364 ; + ns1:created_in "1.4" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1364 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3426 a owl:Class ; +ns1:data_3426 a owl:Class ; rdfs:label "Proteomics experiment report" ; - :created_in "1.5" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Report concerning proteomics experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.5" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report concerning proteomics experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3427 a owl:Class ; +ns1:data_3427 a owl:Class ; rdfs:label "RNAi report" ; - :created_in "1.5" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "RNAi experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.5" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "RNAi experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3428 a owl:Class ; +ns1:data_3428 a owl:Class ; rdfs:label "Simulation experiment report" ; - :created_in "1.5" ; - :obsolete_since "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:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.5" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3442 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." ; + ns2:hasExactSynonym "MRT image", "Magnetic resonance imaging image", "Magnetic resonance tomography image", "NMRI image", "Nuclear magnetic resonance imaging image" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3384 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3384 ], + ns1:data_3424 . -:data_3449 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "An image from a cell migration track assay." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2229 ], - :data_2968 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2229 ], + ns1:data_2968 . -:data_3451 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . - -:data_3479 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Rate of association of a protein with another protein or some other molecule." ; + ns2:hasExactSynonym "kon" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . + +ns1:data_3479 a owl:Class ; rdfs:label "Gene order" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Multiple gene identifiers in a specific order." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Multiple gene identifiers in a specific order." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Such data are often used for genome rearrangement tools and phylogenetic tree labeling." ; - rdfs:subClassOf :data_2082 . + rdfs:subClassOf ns1:data_2082 . -:data_3490 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1712 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1712 ; + ns2:hasDefinition "A sketch of a small molecule made with some specialised drawing package." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2762 . + ns1:created_in "1.8" ; + ns2:hasDefinition "An informative report about a specific or conserved nucleic acid sequence pattern." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2762 . -:data_3496 a owl:Class ; +ns1: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:hasExactSynonym "RNA raw sequence", + ns1:created_in "1.8" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2975 ; + ns2:hasDefinition "A raw RNA sequence." ; + ns2:hasExactSynonym "RNA raw sequence", "Raw RNA sequence", "Raw sequence (RNA)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_3495 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3495 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3497 a owl:Class ; +ns1: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:hasExactSynonym "DNA raw sequence", + ns1:created_in "1.8" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2975 ; + ns2:hasDefinition "A raw DNA sequence." ; + ns2:hasExactSynonym "DNA raw sequence", "Raw DNA sequence", "Raw sequence (DNA)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_3494 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3494 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3509 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2093 . + ns1:created_in "1.8" ; + ns2:hasDefinition "A mapping of supplied textual terms or phrases to ontology concepts (URIs)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2093 . -:data_3546 a owl:Class ; +ns1: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", + ns1:created_in "1.9" ; + ns2:hasDefinition "Any data concerning a specific biological or biomedical image." ; + ns2:hasExactSynonym "Image-associated data", "Image-related data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This can include basic provenance and technical information about the image, scientific annotation and so on." ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_3558 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_3568 a owl:Class ; + ns1:created_in "1.9" ; + ns2:hasDefinition "A human-readable collection of information concerning a clinical trial." ; + ns2:hasExactSynonym "Clinical trial information" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_3668 a owl:Class ; + ns1:created_in "1.10" ; + ns2:hasDefinition "Accession number of an entry from the Gene Expression Atlas." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1:data_3668 a owl:Class ; rdfs:label "Disease name" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "The name of some disease." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_3667 . - -:data_3670 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "The name of some disease." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3667 . + +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "A training course available for use on the Web." ; + ns2:hasExactSynonym "On-line course" ; + ns2:hasNarrowSynonym "MOOC", "Massive open online course" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3669 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3669 . -:data_3718 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3716 . - -:data_3719 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Information about the ability of an organism to cause disease in a corresponding host." ; + ns2:hasExactSynonym "Pathogenicity" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3716 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3716 . - -:data_3720 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Information about the biosafety classification of an organism according to corresponding law." ; + ns2:hasExactSynonym "Biosafety level" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3716 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3717 . + ns1:created_in "1.14" ; + ns2:hasDefinition "A report about localisation of the isolaton of biological material e.g. country or coordinates." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3717 . -:data_3721 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3717 . + ns1:created_in "1.14" ; + ns2:hasDefinition "A report about any kind of isolation source of biological material e.g. blood, water, soil." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3717 . -:data_3722 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns1:created_in "1.14" ; + ns2:hasDefinition "Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_3723 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns1:created_in "1.14" ; + ns2:hasDefinition "Experimentally determined parameter of the morphology of an organism, e.g. size & shape." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_3724 a owl:Class ; +ns1: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", + ns1:created_in "1.14" ; + ns2:hasDefinition "Experimental determined parameter for the cultivation of an organism." ; + ns2:hasExactSynonym "Cultivation conditions" ; + ns2:hasNarrowSynonym "Carbon source", "Culture media composition", "Nitrogen source", "Salinity", "Temperature", "pH value" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_3733 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.15" ; + ns2:hasDefinition "An identifier of a flow cell of a sequencing machine." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_3732 . -:data_3734 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3732 . + ns1:created_in "1.15" ; + ns2:hasDefinition "An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3732 . -:data_3735 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3732 . + ns1:created_in "1.15" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3732 . -:data_3737 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3707 . - -:data_3738 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasDefinition "The mean species diversity in sites or habitats at a local scale." ; + ns2:hasExactSynonym "α-diversity" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3707 . + +ns1: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", + ns1:created_in "1.15" ; + ns2:hasDefinition "The ratio between regional and local species diversity." ; + ns2:hasExactSynonym "True beta diversity", "β-diversity" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3707 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3707 . -:data_3739 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3707 . - -:data_3743 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasDefinition "The total species diversity in a landscape." ; + ns2:hasExactSynonym "ɣ-diversity" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3707 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897, - :data_2884 . - -:data_3756 a owl:Class ; + ns1:created_in "1.15" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897, + ns1:data_2884 . + +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry." ; + ns2:hasNarrowSynonym "False localisation rate", "PTM localisation", "PTM score" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_3757 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2618 . - -:data_3759 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Identifier of a protein modification catalogued in the Unimod database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2618 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_3769 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Identifier for mass spectrometry proteomics data in the proteomexchange.org repository." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_3807 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "An identifier of a concept from the BRENDA ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1:data_3807 a owl:Class ; rdfs:label "EM Movie" ; - :created_in "1.19" ; - oboInOwl:hasDefinition "Raw DDD movie acquisition from electron microscopy." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Raw DDD movie acquisition from electron microscopy." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3424 . -:data_3808 a owl:Class ; +ns1:data_3808 a owl:Class ; rdfs:label "EM Micrograph" ; - :created_in "1.19" ; - oboInOwl:hasDefinition "Raw acquistion from electron microscopy or average of an aligned DDD movie." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Raw acquistion from electron microscopy or average of an aligned DDD movie." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3424 . -:data_3842 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_0006 . -:data_3856 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Identifier of an entry from the RNA central database of annotated human miRNAs." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . -:data_3861 a owl:Class ; +ns1: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", + ns1:created_in "1.21" ; + ns2:hasDefinition "A human-readable systematic collection of patient (or population) health information in a digital format." ; + ns2:hasExactSynonym "EHR", "EMR", "Electronic medical record" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_3871 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3869 . + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3869 . -:data_3905 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2884 . - -:data_3914 a owl:Class ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots." ; + ns2:hasExactSynonym "Density plot" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2884 . + +ns1:data_3914 a owl:Class ; rdfs:label "Quality control report" ; - :created_in "1.23" ; - 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 "QC metrics", + ns1:created_in "1.23" ; + ns2: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." ; + ns2:hasExactSynonym "QC metrics", "QC report", "Quality control metrics" ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_3917 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . - -:data_3924 a owl:Class ; + ns1:created_in "1.23" ; + ns2:hasDefinition "A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak)." ; + ns2:hasExactSynonym "Read count matrix" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1482 . - -:data_3932 a owl:Class ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Alignment (superimposition) of DNA tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (DNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1482 . + +ns1: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", + ns1:created_in "1.24" ; + ns2: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)." ; + ns2:hasExactSynonym "Adjusted P-value", "FDR", "Padj", "pFDR" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0951 . -:data_3949 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso ; - rdfs:subClassOf :data_1354, - :data_1364 . + rdfs:subClassOf ns1:data_1354, + ns1:data_1364 . -:data_3952 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns1:documentation ; + ns1:regex "WP[0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the WikiPathways pathway database." ; + ns2:hasExactSynonym "WikiPathways ID", "WikiPathways pathway ID" ; - oboInOwl:inSubset edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109, - :data_2365 . + ns2:inSubset ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2365 . -:data_3953 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Pathway analysis results", "Pathway enrichment report", "Pathway over-representation report", "Pathway report", "Pathway term enrichment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :data_3753 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:data_3753 . -:deprecation_comment a owl:AnnotationProperty ; +ns1:deprecation_comment a owl:AnnotationProperty ; rdfs:label "deprecation_comment" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.)" ; + ns2:inSubset "concept_properties" . -:documentation a owl:AnnotationProperty ; +ns1:documentation a owl:AnnotationProperty ; rdfs:label "Documentation" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasRelatedSynonym "Specification" ; + ns2:inSubset "concept_properties" . -:file_extension a owl:AnnotationProperty ; +ns1:file_extension a owl:AnnotationProperty ; rdfs:label "File extension" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats." ; - oboInOwl:inSubset "concept_properties" ; + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats." ; + ns2:inSubset "concept_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, preferrably not all capital characters." . -:format_1197 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2035, - :format_2330 . - -:format_1198 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . -:format_1199 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . -:format_1200 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1196 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1196 . -:format_1209 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2095, - :format_2097 . - -:format_1211 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for the consensus of two or more molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2095, + ns1:format_2097 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1207 . - -:format_1214 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1207 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1212 . - -:format_1215 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1212 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1210, - :format_1212 . - -:format_1216 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1210, + ns1:format_1212 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1213 . - -:format_1217 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1213 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1210, - :format_1213 . - -:format_1218 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1210, + ns1:format_1213 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1208 . - -:format_1219 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1208 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1208, - :format_2094 . - -:format_1228 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1208, + ns1:format_2094 . + +ns1:format_1228 a owl:Class ; rdfs:label "UniGene entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from UniGene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from UniGene." ; + ns2:inSubset ns4: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 ; +ns1:format_1247 a owl:Class ; rdfs:label "COG sequence cluster format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the COG database of clusters of (related) protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the COG database of clusters of (related) protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1248 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2078, - :format_2330 . - -:format_1295 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database." ; + ns2:hasExactSynonym "Feature location" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2078, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2155, - :format_2330 . - -:format_1296 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2155, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2155, - :format_2330 . - -:format_1297 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2155, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2155, - :format_2330 . - -:format_1316 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for tandem repeats in a sequence (an EMBOSS report format)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2155, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2031, - :format_2330 . - -:format_1318 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a report on exon-intron structure generated by EMBOSS est2genome." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2031, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2158, - :format_2330 . - -:format_1319 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for restriction enzyme recognition sites used by EMBOSS restrict program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2158, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2158, - :format_2330 . - -:format_1320 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for restriction enzyme recognition sites used by EMBOSS restover program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2158, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2158, - :format_2330 . - -:format_1332 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for restriction enzyme recognition sites used by REBASE database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2158, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using FASTA." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1334 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2330 . - -:format_1335 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using some variant of MSPCrunch." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2330 . - -:format_1336 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using some variant of Smith Waterman." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1337 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1342 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1341 . -:format_1343 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1341 . -:format_1349 a owl:Class ; +ns1:format_1349 a owl:Class ; rdfs:label "HMMER Dirichlet prior" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Dirichlet distribution HMMER format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2074, - :format_2330 . - -:format_1350 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dirichlet distribution HMMER format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2074, + ns1:format_2330 . + +ns1:format_1350 a owl:Class ; rdfs:label "MEME Dirichlet prior" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Dirichlet distribution MEME format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2074, - :format_2330 . - -:format_1351 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dirichlet distribution MEME format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2074, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2075, - :format_2330 . - -:format_1356 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2075, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2068, - :format_2330 . - -:format_1357 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a regular expression pattern from the Prosite database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2068, + ns1:format_2330 . + +ns1:format_1357 a owl:Class ; rdfs:label "EMBOSS sequence pattern" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of an EMBOSS sequence pattern." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2068, - :format_2330 . - -:format_1360 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of an EMBOSS sequence pattern." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2068, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2068, - :format_2330 . - -:format_1366 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A motif in the format generated by the MEME program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2068, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2069, - :format_2330 . - -:format_1367 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence profile (sequence classifier) format used in the PROSITE database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2069, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2069, - :format_2330 . - -:format_1369 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A profile (sequence classifier) in the format used in the JASPAR database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2069, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2072, - :format_2330 . - -:format_1391 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of the model of random sequences used by MEME." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2072, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2330, - :format_2554 . - -:format_1392 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA-style format for multiple sequences aligned by HMMER package to an HMM." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2330, + ns1:format_2554 . + +ns1:format_1392 a owl:Class ; rdfs:label "DIALIGN format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of multiple sequences aligned by DIALIGN package." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1393 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of multiple sequences aligned by DIALIGN package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The format is clustal-like and includes annotation of domain family classification information." ; - rdfs:subClassOf :format_2330, - :format_2554 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . -:format_1419 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2014, - :format_2330 . - -:format_1421 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2014, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2014, - :format_2330 . - -:format_1422 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2014, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2014, - :format_2330 . - -:format_1423 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2014, + ns1:format_2330 . + +ns1:format_1423 a owl:Class ; rdfs:label "Phylip distance matrix" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of PHYLIP phylogenetic distance matrix data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of PHYLIP phylogenetic distance matrix data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2067, + ns1:format_2330 . -:format_1424 a owl:Class ; +ns1:format_1424 a owl:Class ; rdfs:label "ClustalW dendrogram" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Dendrogram (tree file) format generated by ClustalW." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1425 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dendrogram (tree file) format generated by ClustalW." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1430 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2037, - :format_2330 . - -:format_1431 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PHYLIP file format for continuous quantitative character data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2037, + ns1:format_2330 . + +ns1:format_1431 a owl:Class ; rdfs:label "Phylogenetic property values format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2036 ; - oboInOwl:hasDefinition "Format of phylogenetic property data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2036 ; + ns2:hasDefinition "Format of phylogenetic property data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1432 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2037, - :format_2330 . - -:format_1433 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PHYLIP file format for phylogenetics character frequency data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2037, + ns1:format_2330 . + +ns1:format_1433 a owl:Class ; rdfs:label "Phylip discrete states format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of PHYLIP discrete states data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2038, - :format_2330 . - -:format_1434 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of PHYLIP discrete states data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2038, + ns1:format_2330 . + +ns1:format_1434 a owl:Class ; rdfs:label "Phylip cliques format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of PHYLIP cliques data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2039, - :format_2330 . - -:format_1435 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of PHYLIP cliques data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2039, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1436 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree data format used by the PHYLIP program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1437 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of an entry from the TreeBASE database of phylogenetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1445 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of an entry from the TreeFam database of phylogenetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2049, - :format_2330 . - -:format_1454 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2049, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2077, + ns1:format_2330 . -:format_1455 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2077, - :format_2330 . - -:format_1458 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2077, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1457, - :format_2330 . - -:format_1477 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1457, + ns1:format_2330 . + +ns1:format_1477 a owl:Class ; rdfs:label "mmCIF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Entry format of PDB database in mmCIF format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1475, - :format_2330 . - -:format_1478 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of PDB database in mmCIF format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1475, + ns1:format_2330 . + +ns1:format_1478 a owl:Class ; rdfs:label "PDBML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Entry format of PDB database in PDBML (XML) format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1475, - :format_2332 . - -:format_1500 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of PDB database in PDBML (XML) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1475, + ns1:format_2332 . + +ns1:format_1500 a owl:Class ; rdfs:label "Domainatrix 3D-1D scoring matrix format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_2064 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_2064 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1504 a owl:Class ; +ns1:format_1504 a owl:Class ; rdfs:label "aaindex" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Amino acid index format used by the AAindex database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2017, - :format_2330 . - -:format_1511 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Amino acid index format used by the AAindex database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2017, + ns1:format_2330 . + +ns1:format_1511 a owl:Class ; rdfs:label "IntEnz enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from IntEnz (The Integrated Relational Enzyme Database)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from IntEnz (The Integrated Relational Enzyme Database)." ; + ns2:inSubset ns4: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 ; +ns1:format_1512 a owl:Class ; rdfs:label "BRENDA enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the BRENDA enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the BRENDA enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1513 a owl:Class ; +ns1:format_1513 a owl:Class ; rdfs:label "KEGG REACTION enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the KEGG REACTION database of biochemical reactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the KEGG REACTION database of biochemical reactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1514 a owl:Class ; +ns1:format_1514 a owl:Class ; rdfs:label "KEGG ENZYME enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the KEGG ENZYME database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the KEGG ENZYME database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1515 a owl:Class ; +ns1:format_1515 a owl:Class ; rdfs:label "REBASE proto enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the proto section of the REBASE enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the proto section of the REBASE enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1516 a owl:Class ; +ns1:format_1516 a owl:Class ; rdfs:label "REBASE withrefm enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the withrefm section of the REBASE enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the withrefm section of the REBASE enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1551 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of output of the Pcons Model Quality Assessment Program (MQAP)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2065, + ns1:format_2330 . -:format_1552 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of output of the ProQ protein model quality predictor." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2065, + ns1:format_2330 . -:format_1563 a owl:Class ; +ns1:format_1563 a owl:Class ; rdfs:label "SMART domain assignment report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of SMART domain assignment data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of SMART domain assignment data." ; + ns2:inSubset ns4: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 ; +ns1:format_1568 a owl:Class ; rdfs:label "BIND entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the BIND database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the BIND database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1569 a owl:Class ; +ns1:format_1569 a owl:Class ; rdfs:label "IntAct entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the IntAct database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the IntAct database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1570 a owl:Class ; +ns1:format_1570 a owl:Class ; rdfs:label "InterPro entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences." ; + ns2:inSubset ns4: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 ; +ns1:format_1571 a owl:Class ; rdfs:label "InterPro entry abstract format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the textual abstract of signatures in an InterPro entry and its protein matches." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the textual abstract of signatures in an InterPro entry and its protein matches." ; + ns2:inSubset ns4: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 ; +ns1:format_1572 a owl:Class ; rdfs:label "Gene3D entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Gene3D protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Gene3D protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1573 a owl:Class ; +ns1:format_1573 a owl:Class ; rdfs:label "PIRSF entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the PIRSF protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the PIRSF protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1574 a owl:Class ; +ns1:format_1574 a owl:Class ; rdfs:label "PRINTS entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the PRINTS protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the PRINTS protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1575 a owl:Class ; +ns1:format_1575 a owl:Class ; rdfs:label "Panther Families and HMMs entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Panther library of protein families and subfamilies." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Panther library of protein families and subfamilies." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1576 a owl:Class ; +ns1:format_1576 a owl:Class ; rdfs:label "Pfam entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Pfam protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Pfam protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1577 a owl:Class ; +ns1:format_1577 a owl:Class ; rdfs:label "SMART entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the SMART protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the SMART protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1578 a owl:Class ; +ns1:format_1578 a owl:Class ; rdfs:label "Superfamily entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Superfamily protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Superfamily protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1579 a owl:Class ; +ns1:format_1579 a owl:Class ; rdfs:label "TIGRFam entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the TIGRFam protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the TIGRFam protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1580 a owl:Class ; +ns1:format_1580 a owl:Class ; rdfs:label "ProDom entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the ProDom protein domain classification database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the ProDom protein domain classification database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1581 a owl:Class ; +ns1:format_1581 a owl:Class ; rdfs:label "FSSP entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the FSSP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the FSSP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1582 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2027, - :format_2330 . - -:format_1603 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2027, + ns1:format_2330 . + +ns1:format_1603 a owl:Class ; rdfs:label "Ensembl gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of Ensembl genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of Ensembl genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1604 a owl:Class ; +ns1:format_1604 a owl:Class ; rdfs:label "DictyBase gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of DictyBase genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of DictyBase genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1605 a owl:Class ; +ns1:format_1605 a owl:Class ; rdfs:label "CGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of Candida Genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of Candida Genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1606 a owl:Class ; +ns1:format_1606 a owl:Class ; rdfs:label "DragonDB gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of DragonDB genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of DragonDB genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1607 a owl:Class ; +ns1:format_1607 a owl:Class ; rdfs:label "EcoCyc gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of EcoCyc genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of EcoCyc genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1608 a owl:Class ; +ns1:format_1608 a owl:Class ; rdfs:label "FlyBase gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of FlyBase genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of FlyBase genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1609 a owl:Class ; +ns1:format_1609 a owl:Class ; rdfs:label "Gramene gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of Gramene genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of Gramene genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1610 a owl:Class ; +ns1:format_1610 a owl:Class ; rdfs:label "KEGG GENES gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of KEGG GENES genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of KEGG GENES genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1611 a owl:Class ; +ns1:format_1611 a owl:Class ; rdfs:label "MaizeGDB gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Maize genetics and genomics database (MaizeGDB)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Maize genetics and genomics database (MaizeGDB)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1612 a owl:Class ; +ns1:format_1612 a owl:Class ; rdfs:label "MGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Mouse Genome Database (MGD)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Mouse Genome Database (MGD)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1613 a owl:Class ; +ns1:format_1613 a owl:Class ; rdfs:label "RGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Rat Genome Database (RGD)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Rat Genome Database (RGD)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1614 a owl:Class ; +ns1:format_1614 a owl:Class ; rdfs:label "SGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Saccharomyces Genome Database (SGD)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Saccharomyces Genome Database (SGD)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1615 a owl:Class ; +ns1:format_1615 a owl:Class ; rdfs:label "GeneDB gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Sanger GeneDB genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Sanger GeneDB genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1616 a owl:Class ; +ns1:format_1616 a owl:Class ; rdfs:label "TAIR gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of The Arabidopsis Information Resource (TAIR) genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of The Arabidopsis Information Resource (TAIR) genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1617 a owl:Class ; +ns1:format_1617 a owl:Class ; rdfs:label "WormBase gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the WormBase genomes database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the WormBase genomes database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1618 a owl:Class ; +ns1:format_1618 a owl:Class ; rdfs:label "ZFIN gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Zebrafish Information Network (ZFIN) genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Zebrafish Information Network (ZFIN) genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1619 a owl:Class ; +ns1:format_1619 a owl:Class ; rdfs:label "TIGR gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the TIGR genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the TIGR genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1620 a owl:Class ; +ns1:format_1620 a owl:Class ; rdfs:label "dbSNP polymorphism report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the dbSNP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the dbSNP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1623 a owl:Class ; +ns1:format_1623 a owl:Class ; rdfs:label "OMIM entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the OMIM database of genotypes and phenotypes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the OMIM database of genotypes and phenotypes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1624 a owl:Class ; +ns1:format_1624 a owl:Class ; rdfs:label "HGVbase entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a record from the HGVbase database of genotypes and phenotypes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a record from the HGVbase database of genotypes and phenotypes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1625 a owl:Class ; +ns1:format_1625 a owl:Class ; rdfs:label "HIVDB entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a record from the HIVDB database of genotypes and phenotypes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a record from the HIVDB database of genotypes and phenotypes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1626 a owl:Class ; +ns1:format_1626 a owl:Class ; rdfs:label "KEGG DISEASE entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the KEGG DISEASE database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the KEGG DISEASE database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1627 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2061, - :format_2330 . - -:format_1628 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2061, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_1629 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format of raw sequence read data from an Applied Biosystems sequencing machine." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1:format_1629 a owl:Class ; rdfs:label "mira" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of MIRA sequence trace information file." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2330 . - -:format_1630 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of MIRA sequence trace information file." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2330 . + +ns1:format_1630 a owl:Class ; rdfs:label "CAF" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_1631 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDefinition "Sequence assembly project file EXP format." ; + ns2:hasExactSynonym "Affymetrix EXP format", "EXP" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . -:format_1632 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_1633 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2330 . - -:format_1637 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "PHD sequence trace format to store serialised chromatogram data (reads)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1714 ], - :format_2058, - :format_2330 . - -:format_1638 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Affymetrix data file of raw image data." ; + ns2:hasExactSynonym "Affymetrix image data file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1714 ], + ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3110 ], - :format_2058, - :format_2330 . - -:format_1639 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Affymetrix data file of information about (raw) expression levels of the individual probes." ; + ns2:hasExactSynonym "Affymetrix probe raw data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3110 ], + ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2172, - :format_2330 . - -:format_1640 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2172, + ns1:format_2330 . + +ns1:format_1640 a owl:Class ; rdfs:label "ArrayExpress entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the ArrayExpress microarrays database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the ArrayExpress microarrays database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1641 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2056, - :format_2330 . - -:format_1644 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Affymetrix data file format for information about experimental conditions and protocols." ; + ns2:hasExactSynonym "Affymetrix experimental conditions data file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2056, + ns1:format_2330 . + +ns1:format_1644 a owl:Class ; rdfs:label "CHP" ; - :created_in "beta12orEarlier" ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3111 ], - :format_2058, - :format_2330 . - -:format_1645 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Affymetrix data file of information about (normalised) expression levels of the individual probes." ; + ns2:hasExactSynonym "Affymetrix probe normalised data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:format_2058, + ns1:format_2330 . + +ns1:format_1645 a owl:Class ; rdfs:label "EMDB entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the Electron Microscopy DataBase (EMDB)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the Electron Microscopy DataBase (EMDB)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1647 a owl:Class ; +ns1:format_1647 a owl:Class ; rdfs:label "KEGG PATHWAY entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1648 a owl:Class ; +ns1:format_1648 a owl:Class ; rdfs:label "MetaCyc entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the MetaCyc metabolic pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the MetaCyc metabolic pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1649 a owl:Class ; +ns1:format_1649 a owl:Class ; rdfs:label "HumanCyc entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of a report from the HumanCyc metabolic pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of a report from the HumanCyc metabolic pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1650 a owl:Class ; +ns1:format_1650 a owl:Class ; rdfs:label "INOH entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the INOH signal transduction pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the INOH signal transduction pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1651 a owl:Class ; +ns1:format_1651 a owl:Class ; rdfs:label "PATIKA entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the PATIKA biological pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the PATIKA biological pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1652 a owl:Class ; +ns1:format_1652 a owl:Class ; rdfs:label "Reactome entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the reactome biological pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the reactome biological pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1653 a owl:Class ; +ns1:format_1653 a owl:Class ; rdfs:label "aMAZE entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the aMAZE biological pathways and molecular interactions database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the aMAZE biological pathways and molecular interactions database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1654 a owl:Class ; +ns1:format_1654 a owl:Class ; rdfs:label "CPDB entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the CPDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the CPDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1655 a owl:Class ; +ns1:format_1655 a owl:Class ; rdfs:label "Panther Pathways entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the Panther Pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the Panther Pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1665 a owl:Class ; +ns1:format_1665 a owl:Class ; rdfs:label "Taverna workflow format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of Taverna workflows." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2332 . - -:format_1666 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Taverna workflows." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2332 . + +ns1:format_1666 a owl:Class ; rdfs:label "BioModel mathematical model format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of mathematical models from the BioModel database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of mathematical models from the BioModel database." ; + ns2:inSubset ns4: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 ; +ns1:format_1697 a owl:Class ; rdfs:label "KEGG LIGAND entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG LIGAND chemical database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG LIGAND chemical database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1698 a owl:Class ; +ns1:format_1698 a owl:Class ; rdfs:label "KEGG COMPOUND entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG COMPOUND database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG COMPOUND database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1699 a owl:Class ; +ns1:format_1699 a owl:Class ; rdfs:label "KEGG PLANT entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG PLANT database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG PLANT database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1700 a owl:Class ; +ns1:format_1700 a owl:Class ; rdfs:label "KEGG GLYCAN entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG GLYCAN database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG GLYCAN database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1701 a owl:Class ; +ns1:format_1701 a owl:Class ; rdfs:label "PubChem entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from PubChem." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from PubChem." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1702 a owl:Class ; +ns1:format_1702 a owl:Class ; rdfs:label "ChemSpider entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from a database of chemical structures and property predictions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from a database of chemical structures and property predictions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1703 a owl:Class ; +ns1:format_1703 a owl:Class ; rdfs:label "ChEBI entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from Chemical Entities of Biological Interest (ChEBI)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from Chemical Entities of Biological Interest (ChEBI)." ; + ns2:inSubset ns4: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 ; +ns1:format_1704 a owl:Class ; rdfs:label "MSDchem ligand dictionary entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the MSDchem ligand dictionary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the MSDchem ligand dictionary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1705 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_1706 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of an entry from the HET group dictionary (HET groups from PDB files)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1:format_1706 a owl:Class ; rdfs:label "KEGG DRUG entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG DRUG database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG DRUG database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1734 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2848 . - -:format_1735 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of bibliographic reference as used by the PubMed database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for abstracts of scientific articles from the Medline database." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Bibliographic reference information including citation information is included" ; - rdfs:subClassOf :format_2330, - :format_2848 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . -:format_1736 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2848 . - -:format_1737 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "CiteXplore 'core' citation format including title, journal, authors and abstract." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2848 . - -:format_1739 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . + +ns1:format_1739 a owl:Class ; rdfs:label "pmc" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Article format of the PubMed Central database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2020, - :format_2330 . - -:format_1740 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Article format of the PubMed Central database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2020, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of iHOP (Information Hyperlinked over Proteins) text-mining result." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2021, - :format_2331, - :format_2332 . + rdfs:subClassOf ns1:format_2021, + ns1:format_2331, + ns1:format_2332 . -:format_1741 a owl:Class ; +ns1:format_1741 a owl:Class ; rdfs:label "OSCAR format" ; - :citation ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "OSCAR format of annotated chemical text." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "OSCAR format of annotated chemical text." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2332, + ns1:format_3780 . -:format_1747 a owl:Class ; +ns1:format_1747 a owl:Class ; rdfs:label "PDB atom record format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :format_1476 ; - oboInOwl:hasDefinition "Format of an ATOM record (describing data for an individual atom) from a PDB file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:format_1476 ; + ns2:hasDefinition "Format of an ATOM record (describing data for an individual atom) from a PDB file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1760 a owl:Class ; +ns1:format_1760 a owl:Class ; rdfs:label "CATH chain report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of CATH domain classification information for a polypeptide chain." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of CATH domain classification information for a polypeptide chain." ; + ns2:inSubset ns4: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 ; +ns1:format_1761 a owl:Class ; rdfs:label "CATH PDB report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of CATH domain classification information for a protein PDB file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of CATH domain classification information for a protein PDB file." ; + ns2:inSubset ns4: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 ; +ns1:format_1782 a owl:Class ; rdfs:label "NCBI gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry (gene) format of the NCBI database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry (gene) format of the NCBI database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1808 a owl:Class ; +ns1:format_1808 a owl:Class ; rdfs:label "GeneIlluminator gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDbXref "Moby:GI_Gene" ; + ns2:hasDefinition "Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service." ; + ns2:inSubset ns4: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 ; +ns1:format_1809 a owl:Class ; rdfs:label "BacMap gene card format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDbXref "Moby:BacMapGeneCard" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1810 a owl:Class ; +ns1:format_1810 a owl:Class ; rdfs:label "ColiCard report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1861 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2060, - :format_2330 . - -:format_1910 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Map of a plasmid (circular DNA) in PlasMapper TextMap format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2060, + ns1:format_2330 . + +ns1:format_1910 a owl:Class ; rdfs:label "newick" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Phylogenetic tree Newick (text) format." ; - oboInOwl:hasExactSynonym "nh" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1911 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree Newick (text) format." ; + ns2:hasExactSynonym "nh" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1:format_1911 a owl:Class ; rdfs:label "TreeCon format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Phylogenetic tree TreeCon (text) format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1912 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree TreeCon (text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1:format_1912 a owl:Class ; rdfs:label "Nexus format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Phylogenetic tree Nexus (text) format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1918 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree Nexus (text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1:format_1918 a owl:Class ; rdfs:label "Atomic data format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :format_1475 ; - oboInOwl:hasDefinition "Data format for an individual atom." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:format_1475 ; + ns2:hasDefinition "Data format for an individual atom." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1923 a owl:Class ; +ns1:format_1923 a owl:Class ; rdfs:label "acedb" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "ACEDB sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1924 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "ACEDB sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1924 a owl:Class ; rdfs:label "clustal sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1982 ; - oboInOwl:hasDefinition "Clustalw output format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1982 ; + ns2:hasDefinition "Clustalw output format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1925 a owl:Class ; +ns1:format_1925 a owl:Class ; rdfs:label "codata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Codata entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1926 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Codata entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1926 a owl:Class ; rdfs:label "dbid" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Fasta format variant with database name before ID." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fasta format variant with database name before ID." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200 . -:format_1928 a owl:Class ; +ns1:format_1928 a owl:Class ; rdfs:label "Staden experiment format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Staden experiment file format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1929 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Staden experiment file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1929 a owl:Class ; rdfs:label "FASTA" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTA format including NCBI-style IDs." ; - oboInOwl:hasExactSynonym "FASTA format", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA format including NCBI-style IDs." ; + ns2:hasExactSynonym "FASTA format", "FASTA sequence format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . -:format_1930 a owl:Class ; +ns1:format_1930 a owl:Class ; rdfs:label "FASTQ" ; - :created_in "beta12orEarlier" ; - :file_extension "fastq", + ns1:created_in "beta12orEarlier" ; + ns1:file_extension "fastq", "fq" ; - oboInOwl:hasDefinition "FASTQ short read format ignoring quality scores." ; - oboInOwl:hasExactSynonym "FASTAQ", + ns2:hasDefinition "FASTQ short read format ignoring quality scores." ; + ns2:hasExactSynonym "FASTAQ", "fq" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1932 a owl:Class ; +ns1:format_1932 a owl:Class ; rdfs:label "FASTQ-sanger" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTQ short read format with phred quality." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTQ short read format with phred quality." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1934 a owl:Class ; +ns1:format_1934 a owl:Class ; rdfs:label "fitch program" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Fitch program format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1935 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fitch program format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1935 a owl:Class ; rdfs:label "GCG" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GCG sequence file format." ; - oboInOwl:hasExactSynonym "GCG SSF" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GCG sequence file format." ; + ns2:hasExactSynonym "GCG SSF" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "GCG SSF (single sequence file) file format." ; - rdfs:subClassOf :format_2330, - :format_3486 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3486 . -:format_1937 a owl:Class ; +ns1:format_1937 a owl:Class ; rdfs:label "genpept" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Genpept protein entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Genpept protein entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Currently identical to refseqp format" ; - rdfs:subClassOf :format_2205 . + rdfs:subClassOf ns1:format_2205 . -:format_1938 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1974, - :format_2551 . - -:format_1939 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GFF feature file format with sequence in the header." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1974, + ns1:format_2551 . + +ns1:format_1939 a owl:Class ; rdfs:label "GFF3-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GFF3 feature file format with sequence." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1975, - :format_2551 . - -:format_1940 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GFF3 feature file format with sequence." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1975, + ns1:format_2551 . + +ns1:format_1940 a owl:Class ; rdfs:label "giFASTA format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTA sequence format including NCBI-style GIs." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA sequence format including NCBI-style GIs." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200 . -:format_1941 a owl:Class ; +ns1:format_1941 a owl:Class ; rdfs:label "hennig86" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Hennig86 output sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1942 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Hennig86 output sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1942 a owl:Class ; rdfs:label "ig" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Intelligenetics sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1943 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Intelligenetics sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1943 a owl:Class ; rdfs:label "igstrict" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Intelligenetics sequence format (strict version)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1944 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Intelligenetics sequence format (strict version)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1944 a owl:Class ; rdfs:label "jackknifer" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Jackknifer interleaved and non-interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1945 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Jackknifer interleaved and non-interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1945 a owl:Class ; rdfs:label "mase format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mase program sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1946 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mase program sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1946 a owl:Class ; rdfs:label "mega-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mega interleaved and non-interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1950 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mega interleaved and non-interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1950 a owl:Class ; rdfs:label "pdbatom" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB sequence format (ATOM lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB sequence format (ATOM lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdb format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1951 a owl:Class ; +ns1:format_1951 a owl:Class ; rdfs:label "pdbatomnuc" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB nucleotide sequence format (ATOM lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB nucleotide sequence format (ATOM lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdbnuc format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1952 a owl:Class ; +ns1:format_1952 a owl:Class ; rdfs:label "pdbseqresnuc" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB nucleotide sequence format (SEQRES lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB nucleotide sequence format (SEQRES lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdbnucseq format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1953 a owl:Class ; +ns1:format_1953 a owl:Class ; rdfs:label "pdbseqres" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB sequence format (SEQRES lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB sequence format (SEQRES lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdbseq format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1954 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Plain old FASTA sequence format (unspecified format for IDs)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200 . -:format_1955 a owl:Class ; +ns1:format_1955 a owl:Class ; rdfs:label "phylip sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1997 ; - oboInOwl:hasDefinition "Phylip interleaved sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1997 ; + ns2:hasDefinition "Phylip interleaved sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1956 a owl:Class ; +ns1:format_1956 a owl:Class ; rdfs:label "phylipnon sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1998 ; - oboInOwl:hasDefinition "PHYLIP non-interleaved sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1998 ; + ns2:hasDefinition "PHYLIP non-interleaved sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1957 a owl:Class ; +ns1:format_1957 a owl:Class ; rdfs:label "raw" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Raw sequence format with no non-sequence characters." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_1958 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw sequence format with no non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1:format_1958 a owl:Class ; rdfs:label "refseqp" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Refseq protein entry sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Refseq protein entry sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Currently identical to genpept format" ; - rdfs:subClassOf :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . -:format_1959 a owl:Class ; +ns1:format_1959 a owl:Class ; rdfs:label "selex sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2000 ; - oboInOwl:hasDefinition "Selex sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2000 ; + ns2:hasDefinition "Selex sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1960 a owl:Class ; +ns1:format_1960 a owl:Class ; rdfs:label "Staden format" ; - :created_in "beta12orEarlier" ; - :documentation , + ns1:created_in "beta12orEarlier" ; + ns1:documentation , ; - oboInOwl:hasDbXref , + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Staden suite sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . + ns2:hasDefinition "Staden suite sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . -:format_1961 a owl:Class ; +ns1:format_1961 a owl:Class ; rdfs:label "Stockholm format" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Stockholm multiple sequence alignment format (used by Pfam and Rfam)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1962 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Stockholm multiple sequence alignment format (used by Pfam and Rfam)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1962 a owl:Class ; rdfs:label "strider format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DNA strider output sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1964 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA strider output sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1964 a owl:Class ; rdfs:label "plain text format (unformatted)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Plain text sequence format (essentially unformatted)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Plain text sequence format (essentially unformatted)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_1965 a owl:Class ; +ns1:format_1965 a owl:Class ; rdfs:label "treecon sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2005 ; - oboInOwl:hasDefinition "Treecon output sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2005 ; + ns2:hasDefinition "Treecon output sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1966 a owl:Class ; +ns1:format_1966 a owl:Class ; rdfs:label "ASN.1 sequence format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "NCBI ASN.1-based sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1967 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "NCBI ASN.1-based sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_1968 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DAS sequence (XML) format (any type)." ; + ns2:hasExactSynonym "das sequence format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1:format_1968 a owl:Class ; rdfs:label "dasdna" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DAS sequence (XML) format (nucleotide-only)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DAS sequence (XML) format (nucleotide-only)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The use of this format is deprecated." ; - rdfs:subClassOf :format_2332, - :format_2552 . + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . -:format_1969 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1970 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS debugging trace sequence format of full internal data content." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1970 a owl:Class ; rdfs:label "jackknifernon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Jackknifer output sequence non-interleaved format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1971 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Jackknifer output sequence non-interleaved format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1971 a owl:Class ; rdfs:label "meganon sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1992 ; - oboInOwl:hasDefinition "Mega non-interleaved output sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1992 ; + ns2:hasDefinition "Mega non-interleaved output sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1972 a owl:Class ; +ns1:format_1972 a owl:Class ; rdfs:label "NCBI format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "NCBI FASTA sequence format with NCBI-style IDs." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "NCBI FASTA sequence format with NCBI-style IDs." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "There are several variants of this." ; - rdfs:subClassOf :format_2200 . + rdfs:subClassOf ns1:format_2200 . -:format_1976 a owl:Class ; +ns1:format_1976 a owl:Class ; rdfs:label "pir" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "PIR feature format." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_1948 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "PIR feature format." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1948 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1977 a owl:Class ; +ns1:format_1977 a owl:Class ; rdfs:label "swiss feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1963 ; - oboInOwl:hasDefinition "Swiss-Prot feature format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1963 ; + ns2:hasDefinition "Swiss-Prot feature format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1979 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2330 . - -:format_1980 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS debugging trace feature format of full internal data content." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . + +ns1:format_1980 a owl:Class ; rdfs:label "EMBL feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1927 ; - oboInOwl:hasDefinition "EMBL feature format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1927 ; + ns2:hasDefinition "EMBL feature format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1981 a owl:Class ; +ns1:format_1981 a owl:Class ; rdfs:label "GenBank feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1936 ; - oboInOwl:hasDefinition "Genbank feature format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1936 ; + ns2:hasDefinition "Genbank feature format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1983 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1984 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS alignment format for debugging trace of full internal data content." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1984 a owl:Class ; rdfs:label "FASTA-aln" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Fasta format for (aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . - -:format_1985 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fasta format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . + +ns1:format_1985 a owl:Class ; rdfs:label "markx0" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX0 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX0 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1986 a owl:Class ; +ns1:format_1986 a owl:Class ; rdfs:label "markx1" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX1 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX1 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1987 a owl:Class ; +ns1:format_1987 a owl:Class ; rdfs:label "markx10" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX10 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX10 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1988 a owl:Class ; +ns1:format_1988 a owl:Class ; rdfs:label "markx2" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX2 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX2 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1989 a owl:Class ; +ns1:format_1989 a owl:Class ; rdfs:label "markx3" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX3 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX3 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1990 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1991 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment format for start and end of matches between sequence pairs." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1991 a owl:Class ; rdfs:label "mega" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mega format for (typically aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2923 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mega format for (typically aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2923 . -:format_1993 a owl:Class ; +ns1:format_1993 a owl:Class ; rdfs:label "msf alignment format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1947 ; - oboInOwl:hasDefinition "MSF format for (aligned) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1947 ; + ns2:hasDefinition "MSF format for (aligned) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1994 a owl:Class ; +ns1:format_1994 a owl:Class ; rdfs:label "nexus alignment format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1949 ; - oboInOwl:hasDefinition "Nexus/paup format for (aligned) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1949 ; + ns2:hasDefinition "Nexus/paup format for (aligned) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1995 a owl:Class ; +ns1:format_1995 a owl:Class ; rdfs:label "nexusnon alignment format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1973 ; - oboInOwl:hasDefinition "Nexus/paup non-interleaved format for (aligned) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1973 ; + ns2:hasDefinition "Nexus/paup non-interleaved format for (aligned) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1996 a owl:Class ; +ns1:format_1996 a owl:Class ; rdfs:label "pair" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBOSS simple sequence pair alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2554 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS simple sequence pair alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2554 . -:format_1999 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2001 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment format for score values for pairs of sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2001 a owl:Class ; rdfs:label "EMBOSS simple format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBOSS simple multiple alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2002 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS simple multiple alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2002 a owl:Class ; rdfs:label "srs format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Simple multiple sequence (alignment) format for SRS." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2003 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Simple multiple sequence (alignment) format for SRS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2003 a owl:Class ; rdfs:label "srspair" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Simple sequence pair (alignment) format for SRS." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_2004 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Simple sequence pair (alignment) format for SRS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1:format_2004 a owl:Class ; rdfs:label "T-Coffee format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "T-Coffee program alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2015 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "T-Coffee program alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2015 a owl:Class ; rdfs:label "Sequence-profile alignment (HMM) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2014 ; - oboInOwl:hasDefinition "Data format for a sequence-HMM profile alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2014 ; + ns2:hasDefinition "Data format for a sequence-HMM profile alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2034 a owl:Class ; +ns1:format_2034 a owl:Class ; rdfs:label "Biological model format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.2" ; - oboInOwl:consider :format_2013 ; - oboInOwl:hasDefinition "Data format for a biological model." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:format_2013 ; + ns2:hasDefinition "Data format for a biological model." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2040 a owl:Class ; +ns1:format_2040 a owl:Class ; rdfs:label "Phylogenetic tree report (invariants) format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of phylogenetic invariants data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic invariants data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1429 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1429 ], + ns1:format_2036 . -:format_2045 a owl:Class ; +ns1:format_2045 a owl:Class ; rdfs:label "Electron microscopy model format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Annotation format for electron microscopy models." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Annotation format for electron microscopy models." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2051 a owl:Class ; +ns1:format_2051 a owl:Class ; rdfs:label "Polymorphism report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :format_2921 ; - oboInOwl:hasDefinition "Format for sequence polymorphism data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:format_2921 ; + ns2:hasDefinition "Format for sequence polymorphism data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2052 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for reports on a protein family." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0907 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0907 ], + ns1:format_2350 . -:format_2059 a owl:Class ; +ns1:format_2059 a owl:Class ; rdfs:label "Genotype and phenotype annotation format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Format of a report on genotype / phenotype information." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Format of a report on genotype / phenotype information." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2063 a owl:Class ; +ns1:format_2063 a owl:Class ; rdfs:label "Protein report (enzyme) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Format of a report of general information about a specific enzyme." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Format of a report of general information about a specific enzyme." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2159 a owl:Class ; +ns1:format_2159 a owl:Class ; rdfs:label "Gene features (coding region) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.10" ; - oboInOwl:hasDefinition "Format used for report on coding regions in nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_2031 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.10" ; + ns2:hasDefinition "Format used for report on coding regions in nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_2031 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2171 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2170 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used for clusters of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2170 . -:format_2175 a owl:Class ; +ns1:format_2175 a owl:Class ; rdfs:label "Gene cluster format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :format_2172 ; - oboInOwl:hasDefinition "Format used for clusters of genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:format_2172 ; + ns2:hasDefinition "Format used for clusters of genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2183 a owl:Class ; +ns1:format_2183 a owl:Class ; rdfs:label "EMBLXML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2204 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2204 . -:format_2184 a owl:Class ; +ns1:format_2184 a owl:Class ; rdfs:label "cdsxml" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2204 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2204 . -:format_2185 a owl:Class ; +ns1:format_2185 a owl:Class ; rdfs:label "insdxml" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2204 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2204 . -:format_2186 a owl:Class ; +ns1:format_2186 a owl:Class ; rdfs:label "geneseq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Geneseq sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2181 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Geneseq sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2181 . -:format_2188 a owl:Class ; +ns1:format_2188 a owl:Class ; rdfs:label "UniProt format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "UniProt entry sequence format." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_1963 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "UniProt entry sequence format." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1963 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2189 a owl:Class ; +ns1:format_2189 a owl:Class ; rdfs:label "ipi" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :format_1963 ; - oboInOwl:hasDefinition "ipi sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:format_1963 ; + ns2:hasDefinition "ipi sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2194 a owl:Class ; +ns1:format_2194 a owl:Class ; rdfs:label "medline" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Abstract format used by MedLine database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2020, - :format_2330 . - -:format_2202 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Abstract format used by MedLine database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2020, + ns1:format_2330 . + +ns1:format_2202 a owl:Class ; rdfs:label "Sequence record full format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_1919 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1919 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2203 a owl:Class ; +ns1:format_2203 a owl:Class ; rdfs:label "Sequence record lite format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :format_1919 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1919 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2210 a owl:Class ; +ns1:format_2210 a owl:Class ; rdfs:label "Strain data format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :format_1915 ; - oboInOwl:hasDefinition "Format of a report on organism strain data / cell line." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:format_1915 ; + ns2:hasDefinition "Format of a report on organism strain data / cell line." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2211 a owl:Class ; +ns1:format_2211 a owl:Class ; rdfs:label "CIP strain data format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format for a report of strain data as used for CIP database entries." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format for a report of strain data as used for CIP database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2243 a owl:Class ; +ns1:format_2243 a owl:Class ; rdfs:label "phylip property values" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2036 ; - oboInOwl:hasDefinition "PHYLIP file format for phylogenetic property data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2036 ; + ns2:hasDefinition "PHYLIP file format for phylogenetic property data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2303 a owl:Class ; +ns1:format_2303 a owl:Class ; rdfs:label "STRING entry format (HTML)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format (HTML) for the STRING database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format (HTML) for the STRING database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2304 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2054, - :format_2332 . - -:format_2306 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format (XML) for the STRING database of protein interaction." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2054, + ns1:format_2332 . + +ns1:format_2306 a owl:Class ; rdfs:label "GTF" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref , + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Gene Transfer Format (GTF), a restricted version of GFF." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2305 . + ns2:hasDefinition "Gene Transfer Format (GTF), a restricted version of GFF." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2305 . -:format_2310 a owl:Class ; +ns1:format_2310 a owl:Class ; rdfs:label "FASTA-HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTA format wrapped in HTML elements." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331, - :format_2546 . - -:format_2311 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA format wrapped in HTML elements." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331, + ns1:format_2546 . + +ns1:format_2311 a owl:Class ; rdfs:label "EMBL-HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBL entry format wrapped in HTML elements." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331, - :format_2543 . - -:format_2322 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBL entry format wrapped in HTML elements." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331, + ns1:format_2543 . + +ns1:format_2322 a owl:Class ; rdfs:label "BioCyc enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the BioCyc enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the BioCyc enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2323 a owl:Class ; +ns1:format_2323 a owl:Class ; rdfs:label "ENZYME enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the Enzyme nomenclature database (ENZYME)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the Enzyme nomenclature database (ENZYME)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2328 a owl:Class ; +ns1:format_2328 a owl:Class ; rdfs:label "PseudoCAP gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a report on a gene from the PseudoCAP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a report on a gene from the PseudoCAP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2329 a owl:Class ; +ns1:format_2329 a owl:Class ; rdfs:label "GeneCards gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a report on a gene from the GeneCards database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a report on a gene from the GeneCards database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2334 a owl:Class ; +ns1:format_2334 a owl:Class ; rdfs:label "URI format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1047 ; - oboInOwl:hasDefinition "Typical textual representation of a URI." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1047 ; + ns2:hasDefinition "Typical textual representation of a URI." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2341 a owl:Class ; +ns1:format_2341 a owl:Class ; rdfs:label "NCI-Nature pathway entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the NCI-Nature pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the NCI-Nature pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2352 a owl:Class ; +ns1:format_2352 a owl:Class ; rdfs:label "BioXSD (XML)" ; - :citation , + ns1:citation , , ; - :created_in "beta12orEarlier" ; - :documentation , + ns1:created_in "beta12orEarlier" ; + ns1:documentation , ; - :example , + ns1:example , , , ; - :ontology_used "Any ontology allowed, none mandatory. Preferrably 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: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'." ; - oboInOwl:hasBroadSynonym "BioXSD", + ns1:ontology_used "Any ontology allowed, none mandatory. Preferrably 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." ; + ns1:repository ; + ns2: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'." ; + ns2:hasBroadSynonym "BioXSD", "BioXSD data model", "BioXSD format", "BioXSD/GTrack", "BioXSD|BioJSON|BioYAML", "BioXSD|GTrack" ; - oboInOwl:hasDbXref , + ns2: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 "BioXSD XML", + ns2: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." ; + ns2:hasExactSynonym "BioXSD XML", "BioXSD XML format", "BioXSD in XML", "BioXSD in XML format", "BioXSD+XML" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1772 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3108 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1772 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2044 ], - :format_1919, - :format_1920, - :format_2332, - :format_2555, - :format_2571 . - -:format_2532 a owl:Class ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3108 ], + ns1:format_1919, + ns1:format_1920, + ns1:format_2332, + ns1:format_2555, + ns1:format_2571 . + +ns1:format_2532 a owl:Class ; rdfs:label "GenBank-HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Genbank entry format wrapped in HTML elements." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331, - :format_2559 . - -:format_2542 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Genbank entry format wrapped in HTML elements." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331, + ns1:format_2559 . + +ns1:format_2542 a owl:Class ; rdfs:label "Protein features (domains) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Format of a report on protein features (domain composition)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Format of a report on protein features (domain composition)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2549 a owl:Class ; +ns1:format_2549 a owl:Class ; rdfs:label "OBO" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "OBO ontology text format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2196, - :format_2330 . - -:format_2550 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "OBO ontology text format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2196, + ns1:format_2330 . + +ns1:format_2550 a owl:Class ; rdfs:label "OBO-XML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "OBO ontology XML format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2196, - :format_2332 . - -:format_2560 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "OBO ontology XML format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2196, + ns1:format_2332 . + +ns1:format_2560 a owl:Class ; rdfs:label "STRING entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the STRING database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the STRING database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2562 a owl:Class ; +ns1:format_2562 a owl:Class ; rdfs:label "Amino acid identifier format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0994 ; - oboInOwl:hasDefinition "Text format (representation) of amino acid residues." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0994 ; + ns2:hasDefinition "Text format (representation) of amino acid residues." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2568 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1207, - :format_2567 . - -:format_2569 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1207, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1212, - :format_2567 . - -:format_2570 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1212, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1213, - :format_2567 . - -:format_2572 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1213, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333, - :format_2920 . - -:format_2573 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2057, + ns1:format_2330, + ns1:format_2920 . -:format_2585 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_2607 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1208, - :format_2567 . - -:format_3000 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1208, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF)." ; - rdfs:subClassOf :format_2057, - :format_2333 . + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . -:format_3001 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2055, - :format_2330 . - -:format_3004 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2055, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2919 . - -:format_3005 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "bigBed format for large sequence annotation tracks, similar to textual BED format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2919 . + +ns1:format_3005 a owl:Class ; rdfs:label "WIG" ; - :created_in "beta12orEarlier" ; - :documentation ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3006 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2919 . - -:format_3007 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919, - :format_2920 . - -:format_3008 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2554, + ns1:format_2919 . -:format_3009 a owl:Class ; +ns1:format_3009 a owl:Class ; rdfs:label "2bit" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref , + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2571 . + ns2:hasDefinition "2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2571 . -:format_3010 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2571 . - -:format_3011 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition ".nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2571 . + +ns1:format_3011 a owl:Class ; rdfs:label "genePred" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "genePred table format for gene prediction tracks." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "genePred table format for gene prediction tracks." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3012 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3013 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_3014 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "axt format of alignments, typically produced from BLASTZ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1:format_3014 a owl:Class ; rdfs:label "LAV" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "LAV format of alignments generated by BLASTZ and LASTZ." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_3015 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "LAV format of alignments generated by BLASTZ and LASTZ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_3016 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1:format_3016 a owl:Class ; rdfs:label "VCF" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2921 . - -:format_3017 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2921 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_3018 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_3019 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "ZTR format for storing chromatogram data from DNA sequencing instruments." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1975, - :format_2921 . - -:format_3020 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1975, + ns1:format_2921 . + +ns1:format_3020 a owl:Class ; rdfs:label "BCF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "BCF, the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2921 . - -:format_3098 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref ; + ns2:hasDefinition "BCF, the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2921 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Format of raw SCOP domain classification data files." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "These are the parsable data files provided by SCOP." ; - rdfs:subClassOf :format_3097 . + rdfs:subClassOf ns1:format_3097 . -:format_3099 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Format of raw CATH domain classification data files." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "These are the parsable data files provided by CATH." ; - rdfs:subClassOf :format_3097 . + rdfs:subClassOf ns1:format_3097 . -:format_3100 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Format of summary of domain classification information for a CATH domain." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3097 . -:format_3155 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3166 . - -:format_3156 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3166 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013 . - -:format_3157 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "BioPAX is an exchange format for pathway data, with its data model defined in OWL." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2332, - :format_2920 . - -:format_3159 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "EBI Application Result XML is a format returned by sequence similarity search Web services at EBI." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2332, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2557 . - -:format_3160 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2557 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2557 . - -:format_3161 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "NeXML is a standardised XML format for rich phyloinformatic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2557 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3111 ], - :format_2058, - :format_2332 . - -:format_3162 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:format_2058, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3111 ], - :format_2058, - :format_3475 . - -:format_3163 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:format_2058, + ns1:format_3475 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3164 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1:format_3164 a owl:Class ; rdfs:label "GTrack" ; - :citation ; - :created_in "1.0" ; - :documentation , + ns1:citation ; + ns1:created_in "1.0" ; + ns1:documentation , , ; - :example , + ns1:example , ; - :repository ; - oboInOwl: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." ; - oboInOwl:hasBroadSynonym "GTrack ecosystem of formats" ; - oboInOwl:hasDbXref , + ns1:repository ; + ns2: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." ; + ns2:hasBroadSynonym "GTrack ecosystem of formats" ; + ns2: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", + ns2: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\")." ; + ns2:hasExactSynonym "BioXSD/GTrack GTrack", "BioXSD|GTrack GTrack", "GTrack format", "GTrack|BTrack|GSuite GTrack", "GTrack|GSuite|BTrack GTrack" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2206, - :format_2330, - :format_2919 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2206, + ns1:format_2330, + ns1:format_2919 . -:format_3235 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Cytoband format for chromosome cytobands." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3236 ], + ns1:format_2078, + ns1:format_2330 . -:format_3239 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332, - :format_3166 . - -:format_3240 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "CopasiML, the native format of COPASI." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332, + ns1:format_3166 . + +ns1:format_3240 a owl:Class ; rdfs:label "CellML" ; - :created_in "1.2" ; - :documentation ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.2" ; + ns1:documentation ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "CellML, the format for mathematical models of biological and other networks." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . + ns2:hasDefinition "CellML, the format for mathematical models of biological and other networks." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . -:format_3242 a owl:Class ; +ns1:format_3242 a owl:Class ; rdfs:label "PSI MI TAB (MITAB)" ; - :created_in "1.2" ; - :documentation , + ns1:created_in "1.2" ; + ns1:documentation , , , ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2054, - :format_2330 . - -:format_3243 a owl:Class ; + ns2:hasDbXref ; + ns2:hasDefinition "Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2054, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3158 . - -:format_3244 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3158 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "mzML format for raw spectrometer output data, standardised by HUPO PSI MSS." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3246 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3247 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3248 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3249 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3250 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3252 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2197, - :format_2330 . - -:format_3253 a owl:Class ; + ns1:created_in "1.2" ; + ns2:hasDefinition "A human-readable encoding for the Web Ontology Language (OWL)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2197, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns2:hasDefinition "A syntax for writing OWL class expressions." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This format was influenced by the OWL Abstract Syntax and the DL style syntax." ; - rdfs:subClassOf :format_2197, - :format_2330 . + rdfs:subClassOf ns1:format_2197, + ns1:format_2330 . -:format_3254 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns2:hasDefinition "A superset of the \"Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort\"." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This format is used in Protege 4." ; - rdfs:subClassOf :format_2195, - :format_2330 . + rdfs:subClassOf ns1:format_2195, + ns1:format_2330 . -:format_3255 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns2:hasDefinition "The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The SPARQL Query Language incorporates a very similar syntax." ; - rdfs:subClassOf :format_2330, - :format_2376 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . -:format_3256 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:file_extension "nt" ; + ns2:hasDefinition "A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "N-Triples should not be confused with Notation 3 which is a superset of Turtle." ; - rdfs:subClassOf :format_2330, - :format_2376 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . -:format_3257 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2376 . - -:format_3261 a owl:Class ; + ns1:created_in "1.2" ; + ns1:file_extension "n3" ; + ns2:hasDefinition "A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind." ; + ns2:hasExactSynonym "N3" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . + +ns1:format_3261 a owl:Class ; rdfs:label "RDF/XML" ; - :created_in "1.2" ; - :file_extension "rdf" ; - oboInOwl:hasDefinition "Resource Description Framework (RDF) XML format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:file_extension "rdf" ; + ns2:hasDefinition "Resource Description Framework (RDF) XML format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "RDF/XML is a 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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_2376 . -:format_3262 a owl:Class ; +ns1:format_3262 a owl:Class ; rdfs:label "OWL/XML" ; - :created_in "1.2" ; - oboInOwl:hasDefinition "OWL ontology XML serialisation format." ; - oboInOwl:hasNarrowSynonym "OWL" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2197, - :format_2332 . - -:format_3281 a owl:Class ; + ns1:created_in "1.2" ; + ns2:hasDefinition "OWL ontology XML serialisation format." ; + ns2:hasNarrowSynonym "OWL" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2197, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . - -:format_3284 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_3285 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "Standard flowgram format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3288 . - -:format_3286 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "The MAP file describes SNPs and is used by the Plink package." ; + ns2:hasExactSynonym "Plink MAP" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3288 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3288 . - -:format_3309 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "The PED file describes individuals and genetic data and is used by the Plink package." ; + ns2:hasExactSynonym "Plink PED" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3288 . + +ns1:format_3309 a owl:Class ; rdfs:label "CT" ; - :created_in "1.3" ; - :documentation , + ns1:created_in "1.3" ; + ns1:documentation , ; - oboInOwl:hasDefinition "File format of a CT (Connectivity Table) file from the RNAstructure package." ; - oboInOwl:hasExactSynonym "Connect format", + ns2:hasDefinition "File format of a CT (Connectivity Table) file from the RNAstructure package." ; + ns2:hasExactSynonym "Connect format", "Connectivity Table file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2076, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2076, + ns1:format_2330 . -:format_3310 a owl:Class ; +ns1:format_3310 a owl:Class ; rdfs:label "SS" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "XRNA old input style format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2076, - :format_2330 . - -:format_3311 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "XRNA old input style format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2076, + ns1:format_2330 . + +ns1:format_3311 a owl:Class ; rdfs:label "RNAML" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "RNA Markup Language." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921, - :format_2076, - :format_2332 . - -:format_3312 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "RNA Markup Language." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921, + ns1:format_2076, + ns1:format_2332 . + +ns1:format_3312 a owl:Class ; rdfs:label "GDE" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "Format for the Genetic Data Environment (GDE)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_3313 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "Format for the Genetic Data Environment (GDE)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1: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) pacakge." ; - oboInOwl:hasExactSynonym "Block file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2554 . - -:format_3327 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) pacakge." ; + ns2:hasExactSynonym "Block file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2554 . + +ns1:format_3327 a owl:Class ; rdfs:label "BAI" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "BAM indexing format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0955 ], - :format_2333, - :format_3326 . - -:format_3328 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "BAM indexing format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0955 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1370 . - -:format_3329 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "HMMER profile HMM file for HMMER versions 2.x" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1370 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1370 . - -:format_3330 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "HMMER profile HMM file for HMMER versions 3.x" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1370 . + +ns1:format_3330 a owl:Class ; rdfs:label "PO" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "EMBOSS simple sequence pair alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2554 . - -:format_3331 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "EMBOSS simple sequence pair alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1333, - :format_2332 . - -:format_3462 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "XML format as produced by the NCBI Blast package" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1333, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2920 . - -:format_3466 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" ; + ns2:hasDbXref "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" ; + ns2:hasDefinition "Reference-based compression of alignment format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2920 . + +ns1:format_3466 a owl:Class ; rdfs:label "EPS" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Encapsulated PostScript format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3696 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Encapsulated PostScript format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3696 . -:format_3467 a owl:Class ; +ns1:format_3467 a owl:Class ; rdfs:label "GIF" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Graphics Interchange Format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Graphics Interchange Format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . -:format_3468 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3507 . - -:format_3476 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Microsoft Excel spreadsheet format." ; + ns2:hasExactSynonym "Microsoft Excel format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3507 . + +ns1:format_3476 a owl:Class ; rdfs:label "Gene expression data format" ; - :created_in "1.7" ; - :obsolete_since "1.10" ; - oboInOwl:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_2058 ; + ns1:created_in "1.7" ; + ns1:obsolete_since "1.10" ; + ns2:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_2058 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_3477 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2058, - :format_2330 . - -:format_3484 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3210 ], - :format_2333, - :format_3326 . - -:format_3485 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" ; + ns2:hasDefinition "Bowtie format for indexed reference genome for \"small\" genomes." ; + ns2:hasExactSynonym "Bowtie index format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3210 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.7" ; + ns1:documentation "http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf" ; + ns2:hasDefinition "Rich sequence format." ; + ns2:hasExactSynonym "GCG RSF" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3486 . -:format_3487 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3491 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc" ; + ns2:hasDefinition "Bioinformatics Sequence Markup Language format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3210 ], - :format_2333, - :format_3326 . - -:format_3499 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" ; + ns2:hasDefinition "Bowtie format for indexed reference genome for \"large\" genomes." ; + ns2:hasExactSynonym "Bowtie long index format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3210 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2921 . - -:format_3506 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDbXref ; + ns2:hasDefinition "Ensembl standard format for variation data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2921 . + +ns1:format_3506 a owl:Class ; rdfs:label "docx" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "Microsoft Word format." ; - oboInOwl:hasExactSynonym "Microsoft Word format", + ns1:created_in "1.8" ; + ns2:hasDefinition "Microsoft Word format." ; + ns2:hasExactSynonym "Microsoft Word format", "doc" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3507 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3507 . -:format_3508 a owl:Class ; +ns1:format_3508 a owl:Class ; rdfs:label "PDF" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "Portable Document Format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3507 . - -:format_3548 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Portable Document Format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3507 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3549 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1:format_3549 a owl:Class ; rdfs:label "nii" ; - :created_in "1.9" ; - :documentation ; - oboInOwl:hasDefinition "Medical image and metadata format of the Neuroimaging Informatics Technology Initiative." ; - oboInOwl:hasExactSynonym "NIfTI-1 format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3550 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Medical image and metadata format of the Neuroimaging Informatics Technology Initiative." ; + ns2:hasExactSynonym "NIfTI-1 format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3547 . - -:format_3551 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Text-based tagged file format for medical images generated using the MetaImage software package." ; + ns2:hasExactSynonym "Metalmage format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3547 . - -:format_3554 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns1:created_in "1.9" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_3555 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns1:created_in "1.9" ; + ns2:hasDefinition "File format used for scripts for the Statistical Package for the Social Sciences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_3556 a owl:Class ; +ns1:format_3556 a owl:Class ; rdfs:label "MHTML" ; - :created_in "1.9" ; - :documentation ; - :file_extension "mhtml|mht|eml" ; - :media_type ; - oboInOwl: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 incuded in EDAM as a specialisation of 'HTML'." ; - oboInOwl:hasDbXref , + ns1:created_in "1.9" ; + ns1:documentation ; + ns1:file_extension "mhtml|mht|eml" ; + ns1:media_type ; + ns2: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 incuded in EDAM as a specialisation of 'HTML'." ; + ns2: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", + ns2:hasDefinition "MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on." ; + ns2:hasExactSynonym "HTML email format", "HTML email message format", "MHT", "MHT format", "MHTML format", "MIME HTML", "MIME HTML format" ; - oboInOwl:hasRelatedSynonym "MIME multipart", + ns2:hasRelatedSynonym "MIME multipart", "MIME multipart format", "MIME multipart message", "MIME multipart message format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331 . -:format_3578 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.10" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3110 ], - :format_2058, - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3110 ], + ns1:format_2058, + ns1:format_2333 . -:format_3579 a owl:Class ; +ns1: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", + ns1:created_in "1.10" ; + ns1:documentation ; + ns2:hasDefinition "Joint Picture Group file format for lossy graphics file." ; + ns2:hasExactSynonym "JPEG", "jpeg" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3580 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2058, - :format_2330 . - -:format_3581 a owl:Class ; + ns1:created_in "1.10" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This file format is for machine learning." ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3582 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_3583 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "AFG is a single text-based file assembly format that holds read and consensus information together" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Holds a tab-delimited chromosome /start /end / datavalue dataset." ; - rdfs:subClassOf :format_2330, - :format_2919 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3586 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "A BED file where each feature is described by all twelve columns." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12" ; - rdfs:subClassOf :format_3584 . + rdfs:subClassOf ns1:format_3584 . -:format_3587 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Tabular format of chromosome names and sizes used by Galaxy." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3003 . -:format_3588 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Custom Sequence annotation track format used by Galaxy." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Used for tracks/track views within galaxy." ; - rdfs:subClassOf :format_2330, - :format_2919 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3589 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Color space FASTA format sequence variant." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "FASTA format extended for color space information." ; - rdfs:subClassOf :format_2200, - :format_2554 . + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . -:format_3591 a owl:Class ; +ns1:format_3591 a owl:Class ; rdfs:label "TIFF" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "A versatile bitmap format." ; - oboInOwl:hasExactSynonym "tiff" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "A versatile bitmap format." ; + ns2:hasExactSynonym "tiff" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3592 a owl:Class ; +ns1: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:hasExactSynonym "bmp" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Standard bitmap storage format in the Microsoft Windows environment." ; + ns2:hasExactSynonym "bmp" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3593 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "IM is a format used by LabEye and other applications based on the IFUNC image processing library." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "IFUNC library reads and writes most uncompressed interchange versions of this format." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3594 a owl:Class ; +ns1:format_3594 a owl:Class ; rdfs:label "pcd" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "Photo CD format, which is the highest resolution format for images on a CD." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Photo CD format, which is the highest resolution format for images on a CD." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3595 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3596 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "PCX is an image file format that uses a simple form of run-length encoding. It is lossless." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3597 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "The PPM format is a lowest common denominator color image file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3598 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The XBM format was replaced by XPM for X11 in 1989." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3599 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3600 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3601 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "RGB file format is the native raster graphics file format for Silicon Graphics workstations." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3602 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "The PGM format is a lowest common denominator grayscale file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "It is designed to be extremely easy to learn and write programs for." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3603 a owl:Class ; +ns1:format_3603 a owl:Class ; rdfs:label "PNG" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "PNG is a file format for image compression." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "PNG is a file format for image compression." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "It iis expected to replace the Graphics Interchange Format (GIF)." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3604 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation." ; + ns2:hasExactSynonym "Scalable Vector Graphics" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3547 . -:format_3605 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3608 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1933, + ns1:format_3607 . -:format_3609 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1931, + ns1:format_3607 . -:format_3610 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3607 . -:format_3611 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3607 . - -:format_3613 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3607 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Human ENCODE narrow peak format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Format that covers both the broad peak format and narrow peak format from ENCODE." ; - rdfs:subClassOf :format_3612 . + rdfs:subClassOf ns1:format_3612 . -:format_3614 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3612 . - -:format_3615 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Human ENCODE broad peak format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3612 . + +ns1:format_3615 a owl:Class ; rdfs:label "bgzip" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "Blocked GNU Zip format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Blocked GNU Zip format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3616 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3618 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "TAB-delimited genome position file index format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3617 . - -:format_3619 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "XML-based format used to store graph descriptions within Galaxy." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3617 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013 . - -:format_3622 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2921, - :format_3621 . - -:format_3623 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Data format used by the SQLite database conformant to the Gemini schema." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2921, + ns1:format_3621 . + +ns1: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 edam:edam, - edam:obsolete ; - oboInOwl:replacedBy :format_3326 ; + ns1:created_in "1.11" ; + ns1:deprecation_comment "Duplicate of http://edamontology.org/format_3326" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:format_2333, + ns1:format_2350 ; + ns2:hasDefinition "Format of a data index of some type." ; + ns2:inSubset ns4:edam, + ns4:obsolete ; + ns2:replacedBy ns1:format_3326 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_3624 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3326 . - -:format_3626 a owl:Class ; + ns1:created_in "1.11" ; + ns2:hasDefinition "An index of a genome database, indexed for use by the snpeff tool." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3326 . + +ns1: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", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Binary format used by MATLAB files to store workspace variables." ; + ns2:hasExactSynonym ".mat file format", "MAT file format", "MATLAB file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1499 ], - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1499 ], + ns1:format_3033 . -:format_3650 a owl:Class ; +ns1:format_3650 a owl:Class ; rdfs:label "netCDF" ; - :created_in "1.12" ; - :documentation ; - oboInOwl:comment "Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9." ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3245, - :format_3867 . - -:format_3651 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:comment "Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9." ; + ns2: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." ; + ns2:hasExactSynonym "ANDI-MS" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3245, + ns1:format_3867 . + +ns1:format_3651 a owl:Class ; rdfs:label "MGF" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Mascot Generic Format. Encodes multiple MS/MS spectra in a single file." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Mascot Generic Format. Encodes multiple MS/MS spectra in a single file." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3652 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Spectral data format file where each spectrum is written to a separate file." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3653 a owl:Class ; +ns1:format_3653 a owl:Class ; rdfs:label "pkl" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Spectral data file similar to dta." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Spectral data file similar to dta." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3654 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3245 . - -:format_3655 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation "https://dx.doi.org/10.1038%2Fnbt1031" ; + ns2:hasDefinition "Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3657 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation "http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3665 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1:format_3665 a owl:Class ; rdfs:label "K-mer countgraph" ; - :created_in "1.12" ; - :documentation ; - :file_extension "oxlicg" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.12" ; + ns1:documentation ; + ns1:file_extension "oxlicg" ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "A list of k-mers and their occurences in a dataset. Can also be used as an implicit De Bruijn graph." ; - rdfs:subClassOf :format_2333, - :format_3617 . + ns2:hasDefinition "A list of k-mers and their occurences in a dataset. Can also be used as an implicit De Bruijn graph." ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3617 . -:format_3681 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3682 a owl:Class ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns1:file_extension "imzML" ; + ns2:hasDbXref ; + ns2:hasDefinition "imzML metadata is a data format for mass spectrometry imaging metadata." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3683 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3167, + ns1:format_3245 . -:format_3684 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167, - :format_3245 . - -:format_3685 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167, + ns1:format_3245 . + +ns1:format_3685 a owl:Class ; rdfs:label "SED-ML" ; - :citation , + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3686 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2013, + ns1:format_2333, + ns1:format_3167 . -:format_3687 a owl:Class ; +ns1: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 + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition """The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies.""" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2058, + ns1:format_2330, + ns1:format_3167 . -:format_3688 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2330 . - -:format_3689 a owl:Class ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "SBtab is a tabular format for biochemical network models." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3690 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Biological Connection Markup Language (BCML) is an XML format for biological pathways." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332 . - -:format_3691 a owl:Class ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3692 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3693 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1:format_3693 a owl:Class ; rdfs:label "AGP" ; - :created_in "1.13" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2055, - :format_2330 . - -:format_3698 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2055, + ns1:format_2330 . + +ns1:format_3698 a owl:Class ; rdfs:label "SRA format" ; - :created_in "1.13" ; - :documentation ; - oboInOwl:hasDefinition "SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive." ; - oboInOwl:hasExactSynonym "SRA", + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDefinition "SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive." ; + ns2:hasExactSynonym "SRA", "SRA archive format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . -:format_3699 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . - -:format_3700 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDefinition "VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive." ; + ns2:hasExactSynonym "SRA native format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0955 ], - :format_2333, - :format_3326 . - -:format_3701 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDefinition "Index file format used by the samtools package to index TAB-delimited genome position files." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0955 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2206 . + ns1:created_in "1.13" ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2206 . -:format_3702 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software." ; + ns2:hasExactSynonym "Magellan storage file format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3708 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3707 ], - :format_3706 . - -:format_3709 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2: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)." ; + ns2:hasExactSynonym "ABCD" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3707 ], + ns1:format_3706 . + +ns1: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", + ns1:created_in "1.14" ; + ns2: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." ; + ns2:hasExactSynonym "GCT format", "Res format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2058, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2058, + ns1:format_2330 . -:format_3710 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3245 . - -:format_3711 a owl:Class ; + ns1:created_in "1.14" ; + ns1:file_extension "wiff" ; + ns2:hasDefinition "Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex)." ; + ns2:hasExactSynonym "wiff" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3712 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Output format used by X! series search engines that is based on the XML language BIOML." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Proprietary file format for mass spectrometry data from Thermo Scientific." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Proprietary format for which documentation is not available." ; - rdfs:subClassOf :format_2333, - :format_3245 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . -:format_3713 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3714 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "\"Raw\" result file from Mascot database search." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3725 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra." ; + ns2:hasExactSynonym "MaxQuant APL" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332 . -:format_3726 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "PMML uses XML to represent mining models. The structure of the models is described by an XML Schema." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "One or more mining models can be contained in a PMML document." ; - rdfs:subClassOf :format_2332 . + rdfs:subClassOf ns1:format_2332 . -:format_3727 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Image file format used by the Open Microscopy Environment (OME)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3728 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330 . -:format_3729 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Input format used by the Database of Genotypes and Phenotypes (dbGaP)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330 . -:format_3746 a owl:Class ; +ns1: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.15" ; + ns1:documentation ; + ns1:file_extension "biom" ; + ns2: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." ; + ns2:hasExactSynonym "BIological Observation Matrix format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3706 . -:format_3747 a owl:Class ; +ns1:format_3747 a owl:Class ; rdfs:label "protXML" ; - :created_in "1.15" ; - :documentation ; - oboInOwl:hasDbXref oboOther:MS_1001422 ; - oboInOwl:hasDefinition "A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.15" ; + ns1:documentation ; + ns2:hasDbXref ns3:MS_1001422 ; + ns2:hasDefinition "A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3752 a owl:Class ; +ns1:format_3752 a owl:Class ; rdfs:label "CSV" ; - :created_in "1.16" ; - :file_extension "csv" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.16" ; + ns1:file_extension "csv" ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Tabular data represented as comma-separated values in a text file." ; - oboInOwl:hasExactSynonym "Comma-separated values" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3751 . + ns2:hasDefinition "Tabular data represented as comma-separated values in a text file." ; + ns2:hasExactSynonym "Comma-separated values" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3751 . -:format_3758 a owl:Class ; +ns1:format_3758 a owl:Class ; rdfs:label "SEQUEST .out file" ; - :created_in "1.16" ; - oboInOwl:hasDefinition "\"Raw\" result file from SEQUEST database search." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3764 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "\"Raw\" result file from SEQUEST database search." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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", + ns1:created_in "1.16" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . + ns2:hasDefinition "XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3765 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032 . + ns1:created_in "1.16" ; + ns2:hasDefinition "Data table formatted such that it can be passed/streamed within the KNIME platform." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032 . -:format_3770 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDefinition "UniProtKB XML sequence features format is an XML format available for downloading UniProt entries." ; + ns2:hasExactSynonym "UniProt XML", "UniProt XML format", "UniProtKB XML format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2547, - :format_2552 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2547, + ns1:format_2552 . -:format_3771 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDefinition "UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML)." ; + ns2:hasExactSynonym "UniProt RDF", "UniProt RDF format", "UniProtKB RDF format" ; - oboInOwl:hasNarrowSynonym "UniProt RDF/XML", + ns2:hasNarrowSynonym "UniProt RDF/XML", "UniProt RDF/XML format", "UniProtKB RDF/XML", "UniProtKB RDF/XML format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2376, - :format_2547 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2376, + ns1:format_2547 . -:format_3772 a owl:Class ; +ns1:format_3772 a owl:Class ; rdfs:label "BioJSON (BioXSD)" ; - :citation ; - :created_in "1.16" ; - :documentation ; - :example , + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns1:example , ; - :repository ; - oboInOwl: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'." ; - 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)", + ns1:repository ; + ns2: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'." ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "BioJSON (BioXSD data model)", "BioJSON format (BioXSD)", "BioXSD BioJSON", "BioXSD BioJSON format", @@ -15580,41 +15577,41 @@ experiments employing a combination of technologies.""" ; "BioXSD/GTrack BioJSON", "BioXSD|BioJSON|BioYAML BioJSON", "BioXSD|GTrack BioJSON" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3108 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1772 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1772 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], - :format_1919, - :format_1920, - :format_1921, - :format_2571, - :format_3464 . - -:format_3773 a owl:Class ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3108 ], + ns1:format_1919, + ns1:format_1920, + ns1:format_1921, + ns1:format_2571, + ns1:format_3464 . + +ns1:format_3773 a owl:Class ; rdfs:label "BioYAML" ; - :citation ; - :created_in "1.16" ; - :documentation ; - :example , + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns1:example , ; - :repository ; - oboInOwl: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'." ; - 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 editting, and object-oriented programming." ; - oboInOwl:hasExactSynonym "BioXSD BioYAML", + ns1:repository ; + ns2: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'." ; + ns2:hasDbXref ; + ns2: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 editting, and object-oriented programming." ; + ns2:hasExactSynonym "BioXSD BioYAML", "BioXSD BioYAML format", "BioXSD YAML", "BioXSD YAML format", @@ -15628,2921 +15625,2921 @@ experiments employing a combination of technologies.""" ; "BioYAML (BioXSD)", "BioYAML format", "BioYAML format (BioXSD)" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3108 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1772 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1772 ], - :format_1919, - :format_1920, - :format_1921, - :format_2571, - :format_3750 . - -:format_3774 a owl:Class ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3108 ], + ns1:format_1919, + ns1:format_1920, + ns1:format_1921, + ns1:format_2571, + ns1:format_3750 . + +ns1: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)", + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "BioJSON format (Jalview)", "JSON (Jalview)", "JSON format (Jalview)", "Jalview BioJSON", "Jalview BioJSON format", "Jalview JSON", "Jalview JSON format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_1920, - :format_1921, - :format_3464 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], + ns1:format_1920, + ns1:format_1921, + ns1:format_3464 . -:format_3775 a owl:Class ; +ns1:format_3775 a owl:Class ; rdfs:label "GSuite" ; - :citation , + ns1:citation , ; - :created_in "1.16" ; - :documentation , + ns1:created_in "1.16" ; + ns1:documentation , ; - :example ; - :repository ; - oboInOwl: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." ; - oboInOwl:hasDbXref , + ns1:example ; + ns1:repository ; + ns2: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." ; + ns2: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", + ns2: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." ; + ns2:hasExactSynonym "BioXSD/GTrack GSuite", "BioXSD|GTrack GSuite", "GSuite (GTrack ecosystem of formats)", "GSuite format", "GTrack|BTrack|GSuite GSuite", "GTrack|GSuite|BTrack GSuite" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_1920, - :format_2330 . + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . -:format_3776 a owl:Class ; +ns1:format_3776 a owl:Class ; rdfs:label "BTrack" ; - :created_in "1.16" ; - :repository ; - oboInOwl: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." ; - 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)", + ns1:created_in "1.16" ; + ns1:repository ; + ns2: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." ; + ns2: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." ; + ns2:hasExactSynonym "BTrack (GTrack ecosystem of formats)", "BTrack format", "BioXSD/GTrack BTrack", "BioXSD|GTrack BTrack", "GTrack|BTrack|GSuite BTrack", "GTrack|GSuite|BTrack BTrack" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2333, - :format_2548, - :format_2919 . - -:format_3777 a owl:Class ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2333, + ns1:format_2548, + ns1:format_2919 . + +ns1:format_3777 a owl:Class ; rdfs:label "MCPD" ; - :created_in "1.16" ; - :documentation , + ns1:created_in "1.16" ; + ns1:documentation , , , ; - :organisation , + ns1:organisation , ; - oboInOwl:comment "Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012)." ; - oboInOwl:hasDbXref , + ns2:comment "Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012)." ; + ns2: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", + ns2:hasDefinition "The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information." ; + ns2:hasExactSynonym "Bioversity MCPD", "FAO MCPD", "MCPD format", "Multi-Crop Passport Descriptors", "Multi-Crop Passport Descriptors format" ; - oboInOwl:hasNarrowSynonym "IPGRI MCPD", + ns2:hasNarrowSynonym "IPGRI MCPD", "MCPD V.1", "MCPD V.2" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3113 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3113 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2530 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3567 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3567 ], - :format_2330, - :format_3706 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2530 ], + ns1:format_2330, + ns1:format_3706 . -:format_3781 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3464, - :format_3780 . - -:format_3782 a owl:Class ; + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "JSON format of annotated scientific text used by PubAnnotations and other tools." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3464, + ns1:format_3780 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3780 . - -:format_3783 a owl:Class ; + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "BioC is a standardised XML format for sharing and integrating text data and annotations." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3780 . + +ns1:format_3783 a owl:Class ; rdfs:label "PubTator format" ; - :citation , + ns1:citation , ; - :created_in "1.16" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Native textual export format of annotated scientific text from PubTator." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3780 . - -:format_3784 a owl:Class ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Native textual export format of annotated scientific text from PubTator." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3780 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2376, - :format_3749, - :format_3780 . + rdfs:subClassOf ns1:format_2376, + ns1:format_3749, + ns1:format_3780 . -:format_3785 a owl:Class ; +ns1:format_3785 a owl:Class ; rdfs:label "BioNLP Shared Task format" ; - :created_in "1.16" ; - :documentation , + ns1:created_in "1.16" ; + ns1:documentation , , , , ; - :example , + ns1:example , ; - oboInOwl:hasDbXref , + ns2: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", + ns2: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." ; + ns2:hasExactSynonym "BRAT format", "BRAT standoff format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3780 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3780 . -:format_3787 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3786 ], - :format_2350 . - -:format_3788 a owl:Class ; + ns1:created_in "1.16" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A query language (format) for structured database queries." ; + ns2:hasExactSynonym "Query format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3786 ], + ns1:format_2350 . + +ns1:format_3788 a owl:Class ; rdfs:label "SQL" ; - :created_in "1.16" ; - :file_extension "sql" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.16" ; + ns1:file_extension "sql" ; + ns1:media_type ; + ns2: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 edam:edam, - edam:formats ; + ns2:hasDefinition "SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases." ; + ns2:hasExactSynonym "Structured Query Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3789 a owl:Class ; +ns1:format_3789 a owl:Class ; rdfs:label "XQuery" ; - :created_in "1.16" ; - :documentation ; - :file_extension "xq|xqy|xquery" ; - 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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns1:file_extension "xq|xqy|xquery" ; + ns2:hasDbXref ; + ns2: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.)." ; + ns2:hasExactSynonym "XML Query" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3790 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "SPARQL Protocol and RDF Query Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3804 a owl:Class ; +ns1:format_3804 a owl:Class ; rdfs:label "xsd" ; - :created_in "1.17" ; - oboInOwl:hasDefinition "XML format for XML Schema." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332 . + ns1:created_in "1.17" ; + ns2:hasDefinition "XML format for XML Schema." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332 . -:format_3811 a owl:Class ; +ns1:format_3811 a owl:Class ; rdfs:label "XMFA" ; - :created_in "1.20" ; - :documentation ; - 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:hasExactSynonym "alignment format", + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "alignment format", "eXtended Multi-FastA format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . -:format_3812 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3813 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "The GEN file format contains genetic data and describes SNPs." ; + ns2:hasExactSynonym "Genotype file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3814 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_3815 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_3816 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_3817 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "format for the LaTeX document preparation system" ; + ns2:hasExactSynonym "LaTeX format" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "uses the TeX typesetting program format" ; - rdfs:subClassOf :format_2330, - :format_3507 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3507 . -:format_3818 a owl:Class ; +ns1: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", + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "ELAND", "eland" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . -:format_3819 a owl:Class ; +ns1:format_3819 a owl:Class ; rdfs:label "Relaxed PHYLIP Interleaved" ; - :created_in "1.20" ; - :documentation , + ns1:created_in "1.20" ; + ns1:documentation , ; - oboInOwl:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP format." ; - oboInOwl:hasExactSynonym "PHYLIP Interleaved format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP format." ; + ns2:hasExactSynonym "PHYLIP Interleaved format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2924 . -:format_3820 a owl:Class ; +ns1:format_3820 a owl:Class ; rdfs:label "Relaxed PHYLIP Sequential" ; - :created_in "1.20" ; - :documentation , + ns1:created_in "1.20" ; + ns1:documentation , ; - oboInOwl:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998)." ; - oboInOwl:hasExactSynonym "Relaxed PHYLIP non-interleaved", + ns2:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998)." ; + ns2:hasExactSynonym "Relaxed PHYLIP non-interleaved", "Relaxed PHYLIP non-interleaved format", "Relaxed PHYLIP sequential format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2924 . -:format_3821 a owl:Class ; +ns1: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", + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "Default XML format of VisANT, containing all the network information." ; + ns2:hasExactSynonym "VisANT xml", "VisANT xml format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . -:format_3822 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2330 . - -:format_3823 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "GML format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2330 . + +ns1:format_3823 a owl:Class ; rdfs:label "FASTG" ; - :created_in "1.20" ; - :documentation , + ns1:created_in "1.20" ; + ns1: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 edam:edam, - edam:formats ; + ns2:hasDefinition "FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty." ; + ns2:hasExactSynonym "FASTG assembly graph format" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "It is called FASTG, like FASTA, but the G stands for \"graph\"." ; - rdfs:subClassOf :format_2330, - :format_2561 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . -:format_3825 a owl:Class ; +ns1:format_3825 a owl:Class ; rdfs:label "nmrML" ; - :created_in "1.20" ; - :documentation :www.nmrML.org, + ns1:created_in "1.20" ; + ns1:documentation ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3824 . + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3824 . -:format_3826 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333, - :format_2920 . - -:format_3827 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition ". proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3829 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition ". proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3828 . - -:format_3830 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3828 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921, - :format_2333 . - -:format_3832 a owl:Class ; + ns1:created_in "1.20" ; + ns2:hasDefinition "Binary format used by the ARB software suite" ; + ns2:hasExactSynonym "ARB binary format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3833 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html" ; + ns2:hasDefinition "OpenMS format for grouping features in one map or across several maps." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3834 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html" ; + ns2:hasDefinition "OpenMS format for quantitation results (LC/MS features)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3835 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://www.psidev.info/mzdata-1_0_5-docs" ; + ns2:hasDefinition "Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3836 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://cruxtoolkit.sourceforge.net/tide-search.html" ; + ns2:hasDefinition "Format supported by the Tide tool for identifying peptides from tandem mass spectra." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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", + ns1:created_in "1.20" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1333, - :format_2332 . + ns2:hasDefinition "XML format as produced by the NCBI Blast package v2." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1333, + ns1:format_2332 . -:format_3838 a owl:Class ; +ns1:format_3838 a owl:Class ; rdfs:label "pptx" ; - :created_in "1.20" ; - :documentation ; - :media_type ; - oboInOwl:hasDefinition "Microsoft Powerpoint format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3547 . - -:format_3839 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns1:media_type ; + ns2:hasDefinition "Microsoft Powerpoint format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns1:file_extension "ibd" ; + ns2:hasDbXref ; + ns2:hasDefinition "ibd is a data format for mass spectrometry imaging data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . -:format_3843 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3844 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3845 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "Chado-XML format is a direct mapping of the Chado relational schema into XML." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2555 . - -:format_3846 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2555 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3097 . - -:format_3847 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "Output xml file from the InterProScan sequence analysis application." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3097 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3848 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "KEGG Markup Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1:format_3848 a owl:Class ; rdfs:label "PubMed XML" ; - :created_in "1.21" ; - oboInOwl:hasDefinition "XML format for collected entries from biobliographic databases MEDLINE and PubMed." ; - oboInOwl:hasExactSynonym "MEDLINE XML" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2848 . - -:format_3849 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDefinition "XML format for collected entries from biobliographic databases MEDLINE and PubMed." ; + ns2:hasExactSynonym "MEDLINE XML" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2848 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921, - :format_2333 . - -:format_3850 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "A set of XML compliant markup components for describing multiple sequence alignments." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2031, - :format_2332, - :format_2552 . - -:format_3851 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2031, + ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2332 . - -:format_3852 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "Tree structure of Protein Sequence Database Markup Language generated using Matra software." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3853 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1:format_3853 a owl:Class ; rdfs:label "UniParc XML" ; - :created_in "1.21" ; - :documentation ; - oboInOwl:hasDefinition "XML format for the UniParc database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2332 . - -:format_3854 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "XML format for the UniParc database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2332 . - -:format_3857 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "XML format for the UniRef reference clusters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2332 . + +ns1:format_3857 a owl:Class ; rdfs:label "CWL" ; - :citation ; - :created_in "1.21" ; - :documentation , + ns1:citation ; + ns1:created_in "1.21" ; + ns1:documentation , , ; - :example ; - :file_extension "cwl" ; - :organisation , + ns1:example ; + ns1:file_extension "cwl" ; + ns1:organisation , ; - :repository ; - oboInOwl:hasDefinition "Common Workflow Language (CWL) format for description of command-line tools and workflows." ; - oboInOwl:hasExactSynonym "Common Workflow Language", + ns1:repository ; + ns2:hasDefinition "Common Workflow Language (CWL) format for description of command-line tools and workflows." ; + ns2:hasExactSynonym "Common Workflow Language", "CommonWL" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_3750 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_3750 . -:format_3858 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Proprietary file format for mass spectrometry data from Waters." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Proprietary format for which documentation is not available, but used by multiple tools." ; - rdfs:subClassOf :format_2333, - :format_3245 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . -:format_3859 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . -:format_3863 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3862 . + ns1:created_in "1.21" ; + ns2:hasDefinition "NLP format used by a specific type of corpus (collection of texts)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3862 . -:format_3864 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns1:example ; + ns1:repository ; + ns2:hasDefinition "mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows." ; + ns2:hasExactSynonym "miRTop format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1975, + ns1:format_3865 . -:format_3873 a owl:Class ; +ns1: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 edam:data, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3874 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2:hasDefinition "PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3875 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Portable binary format for trajectories produced by GROMACS package." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3876 a owl:Class ; +ns1: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 edam:edam, - edam:formats, + ns1:created_in "1.22" ; + ns2: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." ; + ns2:hasExactSynonym "Trajectory Next Generation format" ; + ns2:inSubset ns4:edam, + ns4:formats, "TNG" ; 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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3877 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . -:format_3878 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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)." ; + ns2:hasExactSynonym "AMBER trajectory format", "inpcrd" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2033, - :format_2330, - :format_3868 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . -:format_3880 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:hasDefinition "GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3881 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "AMBER Parm", "AMBER Parm7", "Parm7", "Prmtop", "Prmtop7" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3882 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3883 a owl:Class ; +ns1: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 tipically 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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:hasDefinition "GROMACS itp files (include topology) contain structure topology information, and are tipically 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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879, + ns1:format_3884 . -:format_3885 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates." ; + ns2:hasExactSynonym "Scripps Research Institute BinPos" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3886 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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)" ; + ns2:hasExactSynonym "restrt", "rst7" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2033, - :format_2330, - :format_3868 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . -:format_3887 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3888 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3884 . - -:format_3889 a owl:Class ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3884 . + +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:hasDefinition "AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters)." ; + ns2:hasExactSynonym "AMBER Object File Format", "AMBER lib" ; - rdfs:subClassOf :format_2330, - :format_3884 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3884 . -:format_3906 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 D. Jeannerat, Magn. Reson. in Chem., 2017, 55, 7-14." ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330, - :format_3824 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3824 . -:format_3909 a owl:Class ; +ns1:format_3909 a owl:Class ; rdfs:label "BpForms" ; - :created_in "1.22" ; - :documentation , + ns1:created_in "1.22" ; + ns1: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 edam:edam, - edam: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 ; + ns1:ontology_used ns1:data_2301 ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:format_2035, + ns1:format_2330, + ns1:format_2571 . + +ns1:format_3910 a owl:Class ; rdfs:label "trr" ; - :created_in "1.22" ; - :documentation ; - oboInOwl:comment "The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760" ; - oboInOwl:hasDefinition "Format of trr files that contain the trajectory of a simulation experiment used by GROMACS." ; - rdfs:subClassOf :format_2033, - :format_2330, - :format_3868 . - -:format_3911 a owl:Class ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:comment "The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760" ; + ns2:hasDefinition "Format of trr files that contain the trajectory of a simulation experiment used by GROMACS." ; + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . + +ns1:format_3911 a owl:Class ; rdfs:label "msh" ; - :created_in "1.22" ; - :documentation , + ns1:created_in "1.22" ; + ns1:documentation , , , ; - :example ; - :file_extension "msh" ; - :information_standard ; - :organisation , + ns1:example ; + ns1:file_extension "msh" ; + ns1:information_standard ; + ns1: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", + ns2: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." ; + ns2:hasExactSynonym "Mash sketch", "min-hash sketch" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2190 ], - :format_2333, - :format_2571 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2190 ], + ns1:format_2333, + ns1:format_2571 . -:format_3913 a owl:Class ; +ns1:format_3913 a owl:Class ; rdfs:label "Loom" ; - :created_in "1.23" ; - :documentation , + ns1:created_in "1.23" ; + ns1: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." ; + ns1:example ; + ns1:file_extension "loom" ; + ns2: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 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3112 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2535 ], - :format_2058, - :format_3590 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2535 ], + ns1:format_2058, + ns1:format_3590 . -:format_3915 a owl:Class ; +ns1:format_3915 a owl:Class ; rdfs:label "Zarr" ; - :created_in "1.23" ; - :documentation , + ns1:created_in "1.23" ; + ns1:documentation , ; - :example ; - :file_extension "zarray", + ns1:example ; + ns1:file_extension "zarray", "zgroup" ; - oboInOwl:hasDefinition "The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data." ; + ns2: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 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3112 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3112 ], - :format_2058, - :format_2333, - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2535 ], + ns1:format_2058, + ns1:format_2333, + ns1:format_3033 . -:format_3916 a owl:Class ; +ns1: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 ], + ns1:created_in "1.23" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "mtx" ; + ns1:organisation ; + ns2: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 ns1:is_format_of ; + owl:someValuesFrom ns1:data_3112 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3112 ], - :format_2058, - :format_2330, - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2535 ], + ns1:format_2058, + ns1:format_2330, + ns1:format_3033 . -:format_3951 a owl:Class ; +ns1:format_3951 a owl:Class ; rdfs:label "BcForms" ; - :created_in "1.24" ; - :documentation , + ns1:created_in "1.24" ; + ns1: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)." ; + ns1:example ; + ns1:media_type "text/plain" ; + ns1:ontology_used ; + ns1:organisation ; + ns2: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 . + rdfs:subClassOf ns1:format_2030, + ns1:format_2062, + ns1:format_2330 . -:format_3956 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.24" ; + ns1:documentation ; + ns1:file_extension "nq" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "N-Quads should not be confused with N-Triples which does not contain graph information." ; - rdfs:subClassOf :format_2330, - :format_2376 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . -:format_3969 a owl:Class ; +ns1:format_3969 a owl:Class ; rdfs:label "Vega" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3464, - :format_3547 . - -:format_3970 a owl:Class ; + ns1:example ; + ns1:file_extension "json" ; + ns1:media_type "application/json" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3464, + ns1:format_3547 . + +ns1:format_3970 a owl:Class ; rdfs:label "Vega-lite" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3464, - :format_3547 . - -:format_3971 a owl:Class ; + ns1:example ; + ns1:file_extension "json" ; + ns1:media_type "application/json" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3464, + ns1:format_3547 . + +ns1:format_3971 a owl:Class ; rdfs:label "NeuroML" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1:documentation , ; - :example , + ns1:example , ; - :media_type "application/xml" ; - :organisation ; - oboInOwl:hasDefinition "A model description language for computational neuroscience." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3241 ], - :format_2013, - :format_2332 . - -:format_3972 a owl:Class ; + ns1:media_type "application/xml" ; + ns1:organisation ; + ns2:hasDefinition "A model description language for computational neuroscience." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3241 ], + ns1:format_2013, + ns1:format_2332 . + +ns1:format_3972 a owl:Class ; rdfs:label "BNGL" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1:documentation , , ; - :example ; - :file_extension "bngl" ; - :media_type "application/xml", + ns1:example ; + ns1:file_extension "bngl" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3241 ], - :format_2013, - :format_2330 . - -:format_3973 a owl:Class ; + ns1:organisation ; + ns2: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." ; + ns2:hasExactSynonym "BioNetGen Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3241 ], + ns1:format_2013, + ns1:format_2330 . + +ns1:format_3973 a owl:Class ; rdfs:label "Docker image format" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1:documentation , ; - :example ; - :file_extension "dockerfile" ; - :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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2571 . - -:format_3975 a owl:Class ; + ns1:example ; + ns1:file_extension "dockerfile" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2571 . + +ns1: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:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_3976 a owl:Class ; + ns1:created_in "1.25" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "gfa" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_3977 a owl:Class ; + ns1:created_in "1.25" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "gfa" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_3620 . - -:format_3978 a owl:Class ; + ns1:created_in "1.25" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "xlsx" ; + ns1:media_type "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_3620 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_3979 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "contig" ; + ns2:hasDefinition "The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2031, - :format_3475 . - -:format_3980 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "wego" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2031, + ns1:format_3475 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "rpkm" ; + ns2:hasDefinition "Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads." ; + ns2:hasExactSynonym "Gene expression levels table format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2058, + ns1:format_3475 . -:format_3981 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "tar" ; + ns2:hasDefinition "TAR archive file format generated by the Unix-based utility tar." ; + ns2:hasExactSynonym "TAR", "Tarball" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 "https://en.wikipedia.org/wiki/Tar_(computing)" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_3982 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "chain" ; + ns2:hasDefinition "The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://genome.ucsc.edu/goldenPath/help/chain.html" ; - rdfs:subClassOf :format_2330, - :format_2920 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . -:format_3983 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "net" ; + ns2:hasDefinition "The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://genome.ucsc.edu/goldenPath/help/net.html" ; - rdfs:subClassOf :format_1920, - :format_2330 . + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . -:format_3984 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2330 . - -:format_3985 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "qmap" ; + ns2:hasDefinition "Format of QMAP files generated for methylation data from an internal BGI pipeline." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . + +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "ga" ; + ns2:hasDefinition "An emerging format for high-level Galaxy workflow description." ; + ns2:hasExactSynonym "Galaxy workflow format", "GalaxyWF" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://github.com/galaxyproject/gxformat2" ; - rdfs:subClassOf :format_2032, - :format_2330 . + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_3986 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "wmv" ; + ns2:hasDefinition "The proprietary native video format of various Microsoft programs such as Windows Media Player." ; + ns2:hasExactSynonym "Windows Media Video format", "Windows movie file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Windows_Media_Video" ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3987 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "zip" ; + ns2:hasDefinition "ZIP is an archive file format that supports lossless data compression." ; + ns2:hasExactSynonym "ZIP" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "A ZIP file may contain one or more files or directories that may have been compressed." ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Zip_(file_format)" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_3988 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "lsm" ; + ns2:hasDefinition "Zeiss' proprietary image format based on TIFF." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3989 a owl:Class ; +ns1:format_3989 a owl:Class ; rdfs:label "GZIP format" ; - :created_in "1.25" ; - :file_extension "gz", + ns1:created_in "1.25" ; + ns1:file_extension "gz", "gzip" ; - oboInOwl:hasDefinition "GNU zip compressed file format common to Unix-based operating systems." ; - oboInOwl:hasExactSynonym "GNU Zip" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "GNU zip compressed file format common to Unix-based operating systems." ; + ns2:hasExactSynonym "GNU Zip" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Gzip" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_3990 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "avi" ; + ns2:hasDefinition "Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback." ; + ns2:hasExactSynonym "Audio Video Interleaved" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Audio_Video_Interleave" ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3991 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2919 . - -:format_3992 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "trackDb" ; + ns2:hasDefinition "A declaration file format for UCSC browsers track dataset display charateristics." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "cigar" ; + ns2: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." ; + ns2:hasExactSynonym "CIGAR" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "http://wiki.bits.vib.be/index.php/CIGAR/" ; - rdfs:subClassOf :format_2330, - :format_2920 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . -:format_3993 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3994 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "stl" ; + ns2: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." ; + ns2:hasExactSynonym "stl" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "u3d" ; + ns2: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." ; + ns2:hasExactSynonym "Universal 3D", "Universal 3D format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3995 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "tex" ; + ns2:hasDefinition "Bitmap image format used for storing textures." ; + ns2:inSubset ns4:edam, + ns4: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 interchangable." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3996 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "py" ; + ns2:hasDefinition "Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming." ; + ns2:hasExactSynonym "Python", "Python program" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_3997 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "mp4" ; + ns2:hasDefinition "A digital multimedia container format most commonly used to store video and audio." ; + ns2:hasExactSynonym "MP4" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group" ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3998 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "pl" ; + ns2:hasDefinition "Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages." ; + ns2:hasExactSynonym "Perl", "Perl program" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_3999 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "R" ; + ns2: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." ; + ns2:hasExactSynonym "R", "R program" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_4000 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "Rmd" ; + ns2:hasDefinition "A file format for making dynamic documents (R Markdown scripts) with the R language." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://rmarkdown.rstudio.com/articles_intro.html" ; - rdfs:subClassOf :format_2032, - :format_2330 . + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_4001 a owl:Class ; +ns1:format_4001 a owl:Class ; rdfs:label "NIFTI format" ; - :created_in "1.25" ; - :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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_4002 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "nii" ; + ns2: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." ; + ns2:hasExactSynonym "NIFTI" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "pickle" ; + ns2:hasDefinition "Format used by Python pickle module for serializing and de-serializing a Python object structure." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://docs.python.org/2/library/pickle.html" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_4003 a owl:Class ; +ns1: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . - -:format_4004 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "npy" ; + ns2: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." ; + ns2:hasExactSynonym "NumPy" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "repz" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_4005 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "cfg" ; + ns2:hasDefinition "A configuration file used by various programs to store settings that are specific to their respective software." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2330 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2330 . -:format_4006 a owl:Class ; +ns1: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 algorith." ; - oboInOwl:hasExactSynonym "Zstandard compression format", + ns1:created_in "1.25" ; + ns1:file_extension "zst" ; + ns2:hasDefinition "Format used by the Zstandard real-time compression algorith." ; + ns2:hasExactSynonym "Zstandard compression format", "Zstandard-compressed file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_4007 a owl:Class ; +ns1: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . - -:hasHumanReadableId a owl:AnnotationProperty ; + ns1:created_in "1.25" ; + ns1:file_extension "m" ; + ns2:hasDefinition "The file format for MATLAB scripts or functions." ; + ns2:hasExactSynonym "MATLAB" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . + +ns1:hasHumanReadableId a owl:AnnotationProperty ; rdfs:label "hasHumanReadableId" ; - rdfs:subPropertyOf oboInOwl:hasAlternativeId . + rdfs:subPropertyOf ns2:hasAlternativeId . -:has_format a owl:ObjectProperty ; +ns1:has_format a owl:ObjectProperty ; rdfs:label "has format" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A has_format B' defines for the subject A, that it has the object B as its data format." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 ; + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:format_1915 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000298\"", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#has-quality\"" ; - owl:inverseOf :is_format_of . + owl:inverseOf ns1:is_format_of . -:has_identifier a owl:ObjectProperty ; +ns1:has_identifier a owl:ObjectProperty ; rdfs:label "has identifier" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A has_identifier B' defines for the subject A, that it has the object B as its identifier." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 . + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:data_0842 ; + owl:inverseOf ns1:is_identifier_of . -:information_standard a owl:AnnotationProperty ; +ns1:information_standard a owl:AnnotationProperty ; rdfs:label "Information standard" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:comment "\"Supported by the given data format\" here means, that the given format enables representation of data that satisfies the information standard." ; - 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", + ns3:is_metadata_tag "true" ; + ns2:comment "\"Supported by the given data format\" here means, that the given format enables representation of data that satisfies the information standard." ; + ns2: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." ; + ns2:hasNarrowSynonym "Minimum information checklist", "Minimum information standard" ; - oboInOwl:inSubset "concept_properties" . + ns2:inSubset "concept_properties" . -:is_deprecation_candidate a owl:AnnotationProperty ; +ns1:is_deprecation_candidate a owl:AnnotationProperty ; rdfs:label "deprecation_candidate" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "When 'true', the concept has been proposed to be deprecated." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "When 'true', the concept has been proposed to be deprecated." ; + ns2:inSubset "concept_properties" . -:is_refactor_candidate a owl:AnnotationProperty ; +ns1:is_refactor_candidate a owl:AnnotationProperty ; rdfs:label "refactor_candidate" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "When 'true', the concept has been proposed to be refactored." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "When 'true', the concept has been proposed to be refactored." ; + ns2:inSubset "concept_properties" . -:isdebtag a owl:AnnotationProperty ; +ns1:isdebtag a owl:AnnotationProperty ; rdfs:label "isdebtag" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "When 'true', the concept has been proposed or is supported within Debian as a tag." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "When 'true', the concept has been proposed or is supported within Debian as a tag." ; + ns2:inSubset "concept_properties" . -:media_type a owl:AnnotationProperty ; +ns1:media_type a owl:AnnotationProperty ; rdfs:label "Media type" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasNarrowSynonym "MIME type" ; + ns2:inSubset "concept_properties" . -:next_id a owl:AnnotationProperty . +ns1:next_id a owl:AnnotationProperty . -:notRecommendedForAnnotation a owl:AnnotationProperty ; +ns1:notRecommendedForAnnotation a owl:AnnotationProperty ; rdfs:label "notRecommendedForAnnotation" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "Whether terms associated with this concept are recommended for use in annotation." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Whether terms associated with this concept are recommended for use in annotation." ; + ns2:inSubset "concept_properties" . -:obsolete_since a owl:AnnotationProperty ; +ns1:obsolete_since a owl:AnnotationProperty ; rdfs:label "Obsolete since" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "Version in which a concept was made obsolete." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Version in which a concept was made obsolete." ; + ns2:inSubset "concept_properties" . -:oldParent a owl:AnnotationProperty ; +ns1:oldParent a owl:AnnotationProperty ; rdfs:label "Old parent" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "EDAM concept URI of the erstwhile \"parent\" of a now deprecated concept." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "EDAM concept URI of the erstwhile \"parent\" of a now deprecated concept." ; + ns2:inSubset "concept_properties" . -:oldRelated a owl:AnnotationProperty ; +ns1:oldRelated a owl:AnnotationProperty ; rdfs:label "Old related" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_properties" . -:ontology_used a owl:AnnotationProperty ; +ns1:ontology_used a owl:AnnotationProperty ; rdfs:label "Ontology used" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_properties" . -:operation_0225 a owl:Class ; +ns1:operation_0225 a owl:Class ; rdfs:label "Data retrieval (database cross-reference)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Search database to retrieve all relevant references to a particular entity or entry." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search database to retrieve all relevant references to a particular entity or entry." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0228 a owl:Class ; +ns1:operation_0228 a owl:Class ; rdfs:label "Data index analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0227 ; - oboInOwl:hasDefinition "Analyse an index of biological data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0227 ; + ns2:hasDefinition "Analyse an index of biological data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0229 a owl:Class ; +ns1:operation_0229 a owl:Class ; rdfs:label "Annotation retrieval (sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve basic information about a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve basic information about a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0232 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Merge two or more (typically overlapping) molecular sequences." ; + ns2:hasExactSynonym "Sequence splicing" ; + ns2:hasNarrowSynonym "Paired-end merging", "Paired-end stitching", "Read merging", "Read stitching" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0234 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate sequence complexity, for example to find low-complexity regions in sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0157 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1259 ], - :operation_0236 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1259 ], + ns1:operation_0236 . -:operation_0235 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0157 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1260 ], - :operation_0236 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1260 ], + ns1:operation_0236 . -:operation_0238 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery)." ; + ns2:hasExactSynonym "Motif discovery" ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0253, - :operation_2404 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0858 ], + ns1:operation_0253, + ns1:operation_2404 . -:operation_0240 a owl:Class ; +ns1:operation_0240 a owl:Class ; rdfs:label "Sequence motif comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Find motifs shared by molecular sequences." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find motifs shared by molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0858 ], - :operation_2404, - :operation_2451 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0858 ], + ns1:operation_2404, + ns1:operation_2451 . -:operation_0241 a owl:Class ; +ns1:operation_0241 a owl:Class ; rdfs:label "Transcription regulatory sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0438 ; - oboInOwl:hasDefinition "Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0438 ; + ns2:hasDefinition "Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0438 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0438 ; + ns2:hasDefinition "Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0438 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0243 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0250 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0250, + ns1:operation_2406 ; + ns2:hasDefinition "Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0250 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0245 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or screen for 3D structural motifs in protein structure(s)." ; + ns2:hasExactSynonym "Protein structural feature identification", "Protein structural motif recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0166 ], + ns1:operation_2406, + ns1:operation_3092 . -:operation_0254 a owl:Class ; +ns1:operation_0254 a owl:Class ; rdfs:label "Data retrieval (feature table)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Extract a sequence feature table from a sequence database entry." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Extract a sequence feature table from a sequence database entry." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0255 a owl:Class ; +ns1:operation_0255 a owl:Class ; rdfs:label "Feature table query" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query the features (in a feature table) of molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query the features (in a feature table) of molecular sequence(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0257 a owl:Class ; +ns1:operation_0257 a owl:Class ; rdfs:label "Data retrieval (sequence alignment)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Display basic information about a sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Display basic information about a sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0259 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare (typically by aligning) two molecular sequence alignments." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "See also 'Sequence profile alignment'." ; - rdfs:subClassOf :operation_0258, - :operation_2424 . + rdfs:subClassOf ns1:operation_0258, + ns1:operation_2424 . -:operation_0260 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3081, - :operation_3434 . - -:operation_0261 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3081, + ns1:operation_3434 . + +ns1:operation_0261 a owl:Class ; rdfs:label "Nucleic acid property processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0262 ; - oboInOwl:hasDefinition "Process (read and / or write) physicochemical property data of nucleic acids." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0262 ; + ns2:hasDefinition "Process (read and / or write) physicochemical property data of nucleic acids." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0264 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict splicing alternatives or transcript isoforms from analysis of sequence data." ; + ns2:hasExactSynonym "Alternative splicing analysis", "Alternative splicing detection", "Differential splicing analysis", "Splice transcript prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], - :operation_2499 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_2499 . -:operation_0265 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects." ; + ns2:hasNarrowSynonym "Frameshift error detection" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3168 ], + ns1:operation_3195, + ns1:operation_3227 . -:operation_0266 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0268 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict super-secondary structure of protein sequence(s)." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1277 ], + ns1:operation_0267 . -:operation_0271 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "This is a \"organisational class\" not very useful for annotation per se." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2423, + ns1:operation_2480 ; + ns2:consider ns1:operation_0474, + ns1:operation_0475 ; + ns2:hasDefinition "Predict tertiary structure of a molecular (biopolymer) sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0272 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences." ; + ns2:hasExactSynonym "Residue interaction prediction" ; + ns2:hasNarrowSynonym "Contact map prediction", "Protein contact map prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_0250, + ns1:operation_2479 . -:operation_0273 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2949 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2949 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2949 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0274 a owl:Class ; +ns1:operation_0274 a owl:Class ; rdfs:label "Protein-protein interaction prediction (from protein sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2464 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2464 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0275 a owl:Class ; +ns1:operation_0275 a owl:Class ; rdfs:label "Protein-protein interaction prediction (from protein structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2464 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2464 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0277 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2497 ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Compare two or more biological pathways or networks." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_0280 a owl:Class ; +ns1:operation_0280 a owl:Class ; rdfs:label "Data retrieval (restriction enzyme annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on restriction enzymes or restriction enzyme sites." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on restriction enzymes or restriction enzyme sites." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0281 a owl:Class ; +ns1:operation_0281 a owl:Class ; rdfs:label "Genetic marker identification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0415 ; - oboInOwl:hasDefinition "Identify genetic markers in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0415 ; + ns2:hasDefinition "Identify genetic markers in DNA sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify and plot third base position variability in a nucleotide sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1263 ], - :operation_0286, - :operation_0564 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1263 ], + ns1:operation_0286, + ns1:operation_0564 . -:operation_0289 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences." ; + ns2:hasExactSynonym "Phylogenetic distance matrix generation", "Sequence distance calculation", "Sequence distance matrix construction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0870 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], - :operation_2451, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0870 ], + ns1:operation_2451, + ns1:operation_3429 . -:operation_0290 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2044 ], - :operation_2451 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2044 ], + ns1:operation_2451 . -:operation_0293 a owl:Class ; +ns1:operation_0293 a owl:Class ; rdfs:label "Hybrid sequence alignment construction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0292 ; + ns2:hasDefinition "Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0301 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0303 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2928 ; + ns2:hasDefinition "Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0303 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0302 a owl:Class ; +ns1:operation_0302 a owl:Class ; rdfs:label "Protein threading" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Align molecular sequence to structure in 3D space (threading)." ; - oboInOwl:hasExactSynonym "Sequence-structure alignment" ; - oboInOwl:hasNarrowSynonym "Sequence-3D profile alignment", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Align molecular sequence to structure in 3D space (threading)." ; + ns2:hasExactSynonym "Sequence-structure alignment" ; + ns2:hasNarrowSynonym "Sequence-3D profile alignment", "Sequence-to-3D-profile alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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_output ; - owl:someValuesFrom :data_0893 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1460 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1460 ], - :operation_0303 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0893 ], + ns1:operation_0303 . -:operation_0305 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3068 ], - :operation_2421 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], + ns1:operation_2421 . -:operation_0307 a owl:Class ; +ns1:operation_0307 a owl:Class ; rdfs:label "Virtual PCR" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Perform in-silico (virtual) PCR." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Perform in-silico (virtual) PCR." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . -:operation_0309 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families." ; + ns2:hasExactSynonym "Microarray probe prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2717 ], - :operation_2419, - :operation_2430 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2717 ], + ns1:operation_2419, + ns1:operation_2430 . -:operation_0311 a owl:Class ; +ns1:operation_0311 a owl:Class ; rdfs:label "Microarray data standardisation and normalisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:hasDefinition "Standardize or normalize microarray data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3435 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:hasDefinition "Standardize or normalize microarray data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3435 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0312 a owl:Class ; +ns1:operation_0312 a owl:Class ; rdfs:label "Sequencing-based expression profile data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) SAGE, MPSS or SBS experimental data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) SAGE, MPSS or SBS experimental data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0313 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering." ; + ns2:hasNarrowSynonym "Gene expression clustering", "Gene expression profile clustering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3111 ], - :operation_0315, - :operation_3432 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3111 ], + ns1:operation_0315, + ns1:operation_3432 . -:operation_0316 a owl:Class ; +ns1:operation_0316 a owl:Class ; rdfs:label "Functional profiling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Interpret (in functional terms) and annotate gene expression data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2495 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Interpret (in functional terms) and annotate gene expression data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2495 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0317 a owl:Class ; +ns1:operation_0317 a owl:Class ; rdfs:label "EST and cDNA sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2403 ; - oboInOwl:hasDefinition "Analyse EST or cDNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2403 ; + ns2:hasDefinition "Analyse EST or cDNA sequences." ; + ns2:inSubset ns4: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 ; +ns1:operation_0318 a owl:Class ; rdfs:label "Structural genomics target selection" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2406 ; - oboInOwl:hasDefinition "Identify and select targets for protein structural determination." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2406 ; + ns2:hasDefinition "Identify and select targets for protein structural determination." ; + ns2:inSubset ns4: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 ; +ns1:operation_0326 a owl:Class ; rdfs:label "Phylogenetic tree editing" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Edit a phylogenetic tree." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Edit a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0872 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0872 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0872 ], - :operation_0324, - :operation_3096 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0872 ], + ns1:operation_0324, + ns1:operation_3096 . -:operation_0327 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Phylogenetic shadowing" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0194 ], + ns1:operation_0323 . -:operation_0328 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2415 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:operation_2415 ; + ns2:hasDefinition "Simulate the folding of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2415 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0329 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0474 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0474 ; + ns2:hasDefinition "Predict the folding pathway(s) or non-native structural intermediates of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0474 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0330 a owl:Class ; +ns1:operation_0330 a owl:Class ; rdfs:label "Protein SNP mapping" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0331 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0331 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0332 a owl:Class ; +ns1:operation_0332 a owl:Class ; rdfs:label "Immunogen design" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Design molecules that elicit an immune response (immunogens)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Design molecules that elicit an immune response (immunogens)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0333 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0420 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0420 ; + ns2:hasDefinition "Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0420 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0334 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate Km, Vmax and derived data for an enzyme reaction." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2024 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0821 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0821 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2024 ], + ns1:operation_0250 . -:operation_0336 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2428 . - -:operation_0340 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Test and validate the format and content of a data file." ; + ns2:hasExactSynonym "File format validation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2428 . + +ns1:operation_0340 a owl:Class ; rdfs:label "Protein secondary database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_3092 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3092 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0341 a owl:Class ; +ns1:operation_0341 a owl:Class ; rdfs:label "Motif database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :operation_0253 ; - oboInOwl:hasDefinition "Screen a sequence against a motif or pattern database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:operation_0253 ; + ns2:hasDefinition "Screen a sequence against a motif or pattern database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0342 a owl:Class ; +ns1:operation_0342 a owl:Class ; rdfs:label "Sequence profile database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :operation_0239 ; - oboInOwl:hasDefinition "Search a database of sequence profiles with a query sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:operation_0239 ; + ns2:hasDefinition "Search a database of sequence profiles with a query sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0343 a owl:Class ; +ns1:operation_0343 a owl:Class ; rdfs:label "Transmembrane protein database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2421 ; - oboInOwl:hasDefinition "Search a database of transmembrane proteins, for example for sequence or structural similarities." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2421 ; + ns2:hasDefinition "Search a database of transmembrane proteins, for example for sequence or structural similarities." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0344 a owl:Class ; +ns1:operation_0344 a owl:Class ; rdfs:label "Sequence retrieval (by code)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a database and retrieve sequences with a given entry code or accession number." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a database and retrieve sequences with a given entry code or accession number." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0345 a owl:Class ; +ns1:operation_0345 a owl:Class ; rdfs:label "Sequence retrieval (by keyword)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a database and retrieve sequences containing a given keyword." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a database and retrieve sequences containing a given keyword." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0347 a owl:Class ; +ns1:operation_0347 a owl:Class ; rdfs:label "Sequence database search (by motif or pattern)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0239 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0239 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0348 a owl:Class ; +ns1:operation_0348 a owl:Class ; rdfs:label "Sequence database search (by amino acid composition)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0338 ; - oboInOwl:hasDefinition "Search a sequence database and retrieve sequences of a given amino acid composition." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0338 ; + ns2:hasDefinition "Search a sequence database and retrieve sequences of a given amino acid composition." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0349 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0338 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0338 . -:operation_0350 a owl:Class ; +ns1:operation_0350 a owl:Class ; rdfs:label "Sequence database search (by sequence using word-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method." ; + ns2:inSubset ns4: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 ; +ns1:operation_0351 a owl:Class ; rdfs:label "Sequence database search (by sequence using profile-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "This includes tools based on PSI-BLAST." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0352 a owl:Class ; +ns1:operation_0352 a owl:Class ; rdfs:label "Sequence database search (by sequence using local alignment-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method." ; + ns2:inSubset ns4: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 ; +ns1:operation_0353 a owl:Class ; rdfs:label "Sequence database search (by sequence using global alignment-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method." ; + ns2:inSubset ns4: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 ; +ns1:operation_0354 a owl:Class ; rdfs:label "Sequence database search (by sequence for primer sequences)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences." ; + ns2:inSubset ns4: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 ; +ns1:operation_0355 a owl:Class ; rdfs:label "Sequence database search (by molecular weight)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_2929 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2929 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0356 a owl:Class ; +ns1:operation_0356 a owl:Class ; rdfs:label "Sequence database search (by isoelectric point)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0338 ; - oboInOwl:hasDefinition "Search sequence(s) or a sequence database for sequences of a given isoelectric point." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0338 ; + ns2:hasDefinition "Search sequence(s) or a sequence database for sequences of a given isoelectric point." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0357 a owl:Class ; +ns1:operation_0357 a owl:Class ; rdfs:label "Structure retrieval (by code)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a tertiary structure database and retrieve entries with a given entry code or accession number." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a tertiary structure database and retrieve entries with a given entry code or accession number." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0358 a owl:Class ; +ns1:operation_0358 a owl:Class ; rdfs:label "Structure retrieval (by keyword)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a tertiary structure database and retrieve entries containing a given keyword." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a tertiary structure database and retrieve entries containing a given keyword." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0359 a owl:Class ; +ns1:operation_0359 a owl:Class ; rdfs:label "Structure database search (by sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0346 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0346 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0360 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a database of molecular structure and retrieve structures that are similar to a query structure." ; + ns2:hasExactSynonym "Structure database search (by structure)", "Structure retrieval by structure" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0339, - :operation_2483 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0339, + ns1:operation_2483 . -:operation_0363 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate the reverse and / or complement of a nucleotide sequence." ; + ns2:hasExactSynonym "Nucleic acid sequence reverse and complement", "Reverse / complement", "Reverse and complement" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0230 . + rdfs:subClassOf ns1:operation_0230 . -:operation_0364 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0230 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a random sequence, for example, with a specific character composition." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0230 . -:operation_0365 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate digest fragments for a nucleotide sequence containing restriction sites." ; + ns2:hasExactSynonym "Nucleic acid restriction digest" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1239 ], - :operation_0230, - :operation_0262 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1239 ], + ns1:operation_0230, + ns1:operation_0262 . -:operation_0366 a owl:Class ; +ns1:operation_0366 a owl:Class ; rdfs:label "Protein sequence cleavage" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398)." ; - oboInOwl:hasDefinition "Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage)." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], + ns1:created_in "beta12orEarlier" ; + ns2:comment "This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398)." ; + ns2:hasDefinition "Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1238 ], - :operation_0230 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1238 ], + ns1:operation_0230 . -:operation_0367 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0368 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mask characters in a molecular sequence (replacing those characters with a mask character)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "For example, SNPs or repeats in a DNA sequence might be masked." ; - rdfs:subClassOf :operation_0231 . + rdfs:subClassOf ns1:operation_0231 . -:operation_0370 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Create (or remove) restriction sites in sequences, for example using silent mutations." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0371 a owl:Class ; +ns1:operation_0371 a owl:Class ; rdfs:label "DNA translation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Translate a DNA sequence into protein." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Translate a DNA sequence into protein." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0108 ], - :operation_0233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0108 ], + ns1:operation_0233 . -:operation_0372 a owl:Class ; +ns1:operation_0372 a owl:Class ; rdfs:label "DNA transcription" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Transcribe a nucleotide sequence into mRNA sequence(s)." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Transcribe a nucleotide sequence into mRNA sequence(s)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :operation_0233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:operation_0233 . -:operation_0377 a owl:Class ; +ns1:operation_0377 a owl:Class ; rdfs:label "Sequence composition calculation (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Calculate base frequency or word composition of a nucleotide sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0236 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Calculate base frequency or word composition of a nucleotide sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0236 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0378 a owl:Class ; +ns1:operation_0378 a owl:Class ; rdfs:label "Sequence composition calculation (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Calculate amino acid frequency or word composition of a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0236 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Calculate amino acid frequency or word composition of a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0236 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0379 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0237, - :operation_0415 . - -:operation_0380 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0237, + ns1:operation_0415 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0236, - :operation_0237 . - -:operation_0383 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse repeat sequence organisation such as periodicity." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0236, + ns1:operation_0237 . + +ns1:operation_0383 a owl:Class ; rdfs:label "Protein hydropathy calculation (from structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2574 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2574 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0384 a owl:Class ; +ns1:operation_0384 a owl:Class ; rdfs:label "Accessible surface calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:AtomAccessibilitySolvent", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2:hasDefinition "Calculate solvent accessible or buried surface areas in protein or other molecular structures." ; + ns2:hasNarrowSynonym "Protein solvent accessibility calculation" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1542 ], + ns1:operation_3351 . -:operation_0385 a owl:Class ; +ns1:operation_0385 a owl:Class ; rdfs:label "Protein hydropathy cluster calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify clusters of hydrophobic or charged residues in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0393 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify clusters of hydrophobic or charged residues in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0393 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0386 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate whether a protein structure has an unusually large net charge (dipole moment)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1545 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1545 ], + ns1:operation_0250 . -:operation_0388 a owl:Class ; +ns1:operation_0388 a owl:Class ; rdfs:label "Protein binding site prediction (from structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2575 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2575 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0390 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0246 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Decompose a structure into compact or globular fragments (protein peeling)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0246 . -:operation_0392 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure." ; + ns2:hasExactSynonym "Protein contact map calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1547 ], - :operation_0391 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1547 ], + ns1:operation_0391 . -:operation_0395 a owl:Class ; +ns1:operation_0395 a owl:Class ; rdfs:label "Residue non-canonical interaction detection" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :operation_0249 ; - oboInOwl:hasDefinition "Calculate non-canonical atomic interactions in protein structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:operation_0249 ; + ns2:hasDefinition "Calculate non-canonical atomic interactions in protein structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0396 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a Ramachandran plot of a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1544 ], - :operation_0249 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1544 ], + ns1:operation_0249 . -:operation_0397 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_1844 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_1844 ; + ns2:hasDefinition "Validate a Ramachandran plot of a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_1844 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0399 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict extinction coefficients or optical density of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1531 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1531 ], + ns1:operation_0250 . -:operation_0401 a owl:Class ; +ns1:operation_0401 a owl:Class ; rdfs:label "Protein hydropathy calculation (from sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Hydropathy calculation on a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2574 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Hydropathy calculation on a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2574 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0402 a owl:Class ; +ns1:operation_0402 a owl:Class ; rdfs:label "Protein titration curve plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Plot a protein titration curve." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Plot a protein titration curve." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1527 ], - :operation_0337, - :operation_0400 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1527 ], + ns1:operation_0337, + ns1:operation_0400 . -:operation_0403 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate isoelectric point of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1528 ], - :operation_0400 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1528 ], + ns1:operation_0400 . -:operation_0404 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Estimate hydrogen exchange rate of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1530 ], - :operation_0400 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1530 ], + ns1:operation_0400 . -:operation_0405 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2574 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate hydrophobic or hydrophilic / charged regions of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2574 . -:operation_0406 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1521 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1521 ], + ns1:operation_2574 . -:operation_0407 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1520 ], + ns1:operation_0564, + ns1:operation_2574 . -:operation_0408 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1526 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1526 ], + ns1:operation_2574 . -:operation_0409 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the solubility or atomic solvation energy of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1524 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1524 ], + ns1:operation_2574 . -:operation_0410 a owl:Class ; +ns1:operation_0410 a owl:Class ; rdfs:label "Protein crystallizability prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict crystallizability of a protein sequence." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict crystallizability of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1525 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1525 ], + ns1:operation_2574 . -:operation_0411 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0418 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "(jison)Too fine-grained." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0418 ; + ns2:hasDefinition "Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0418 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0412 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0418 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "(jison)Too fine-grained." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0418 ; + ns2:hasDefinition "Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0418 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0413 a owl:Class ; +ns1:operation_0413 a owl:Class ; rdfs:label "MHC peptide immunogenicity prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0414 a owl:Class ; +ns1:operation_0414 a owl:Class ; rdfs:label "Protein feature prediction (from sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_3092 ; + ns2:hasDefinition "Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure." ; + ns2:inSubset ns4: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 ; +ns1:operation_0417 a owl:Class ; rdfs:label "PTM site prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict post-translation modification sites in protein sequences." ; - oboInOwl:hasExactSynonym "PTM analysis", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict post-translation modification sites in protein sequences." ; + ns2:hasExactSynonym "PTM analysis", "PTM prediction", "PTM site analysis", "Post-translation modification site prediction", "Post-translational modification analysis", "Post-translational modification site prediction", "Protein post-translation modification site prediction" ; - oboInOwl:hasNarrowSynonym "Acetylation prediction", + ns2:hasNarrowSynonym "Acetylation prediction", "Acetylation site prediction", "Dephosphorylation prediction", "Dephosphorylation site prediction", @@ -18587,1701 +18584,1701 @@ experiments employing a combination of technologies.""" ; "Tyrosine nitration site prediction", "Ubiquitination prediction", "Ubiquitination site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0601 ], + ns1:operation_3092 . -:operation_0419 a owl:Class ; +ns1:operation_0419 a owl:Class ; rdfs:label "Protein binding site prediction (from sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Predict catalytic residues, active sites or other ligand-binding sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2575 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Predict catalytic residues, active sites or other ligand-binding sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2575 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0421 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2415 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:operation_2415 ; + ns2:hasDefinition "Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2415 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0422 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect or predict cleavage sites (enzymatic or chemical) in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:operation_3092 . -:operation_0423 a owl:Class ; +ns1:operation_0423 a owl:Class ; rdfs:label "Epitope mapping (MHC Class I)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Predict epitopes that bind to MHC class I molecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0416 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Predict epitopes that bind to MHC class I molecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0416 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0424 a owl:Class ; +ns1:operation_0424 a owl:Class ; rdfs:label "Epitope mapping (MHC Class II)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Predict epitopes that bind to MHC class II molecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0416 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Predict epitopes that bind to MHC class II molecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0416 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0425 a owl:Class ; +ns1:operation_0425 a owl:Class ; rdfs:label "Whole gene prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_2454 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2454 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0426 a owl:Class ; +ns1:operation_0426 a owl:Class ; rdfs:label "Gene component prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2454 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_0427 a owl:Class ; rdfs:label "Transposon prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Detect or predict transposons, retrotransposons / retrotransposition signatures etc." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect or predict transposons, retrotransposons / retrotransposition signatures etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0428 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect polyA signals in nucleotide sequences." ; + ns2:hasExactSynonym "PolyA detection", "PolyA prediction", "PolyA signal prediction", "Polyadenylation signal detection", "Polyadenylation signal prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0429 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect quadruplex-forming motifs in nucleotide sequences." ; + ns2:hasExactSynonym "Quadruplex structure prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3128 ], + ns1:operation_0415 . -:operation_0430 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find CpG rich regions in a nucleotide sequence or isochores in genome sequences." ; + ns2:hasExactSynonym "CpG island and isochores detection", "CpG island and isochores rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], + ns1:operation_0415 . -:operation_0433 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify, predict or analyse splice sites in nucleotide sequences." ; + ns2:hasExactSynonym "Splice prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_2499 . -:operation_0434 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2454 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2454 ; + ns2:hasDefinition "Predict whole gene structure using a combination of multiple methods to achieve better predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2454 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0435 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2454 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find operons (operators, promoters and genes) in bacteria genes." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2454 . -:operation_0437 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict selenocysteine insertion sequence (SECIS) in a DNA sequence." ; + ns2:hasExactSynonym "Selenocysteine insertion sequence (SECIS) prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0916 ], + ns1:operation_2454 . -:operation_0439 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict translation initiation sites, possibly by searching a database of sites." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0108 ], - :operation_0436 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0108 ], + ns1:operation_0436 . -:operation_0442 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0441 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0438 ; + ns2:hasDefinition "Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0441 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0444 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences." ; + ns2:hasExactSynonym "MAR/SAR prediction", "Matrix/scaffold attachment site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0438 . -:operation_0445 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0440 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict transcription factor binding sites in DNA sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0440 . -:operation_0446 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict exonic splicing enhancers (ESE) in exons." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_0440 . -:operation_0447 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Evaluate molecular sequence alignment accuracy." ; + ns2:hasExactSynonym "Sequence alignment quality evaluation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Evaluation might be purely sequence-based or use structural information." ; - rdfs:subClassOf :operation_0258, - :operation_2428 . + rdfs:subClassOf ns1:operation_0258, + ns1:operation_2428 . -:operation_0448 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence." ; + ns2:hasExactSynonym "Residue conservation analysis" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0258 . -:operation_0449 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse correlations between sites in a molecular sequence alignment." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0258, + ns1:operation_3465 . -:operation_0450 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; + ns2:hasExactSynonym "Chimeric sequence detection" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2478 . -:operation_0451 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment." ; + ns2:hasExactSynonym "Sequence alignment analysis (recombination detection)" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." ; - rdfs:subClassOf :operation_2478 . + rdfs:subClassOf ns1:operation_2478 . -:operation_0452 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify insertion, deletion and duplication events from a sequence alignment." ; + ns2:hasExactSynonym "Indel discovery", "Sequence alignment analysis (indel detection)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." ; - rdfs:subClassOf :operation_3227 . + rdfs:subClassOf ns1:operation_3227 . -:operation_0453 a owl:Class ; +ns1:operation_0453 a owl:Class ; rdfs:label "Nucleosome formation potential prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0432 ; - oboInOwl:hasDefinition "Predict nucleosome formation potential of DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0432 ; + ns2:hasDefinition "Predict nucleosome formation potential of DNA sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0455 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2985 ], - :operation_0262 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2985 ], + ns1:operation_0262 . -:operation_0457 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA stitch profile." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range." ; - rdfs:subClassOf :operation_0456 . + rdfs:subClassOf ns1:operation_0456 . -:operation_0458 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0456 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA melting curve." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0456 . -:operation_0459 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0456 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA probability profile." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0456 . -:operation_0460 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0456 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA temperature profile." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0456 . -:operation_0461 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate curvature and flexibility / stiffness of a nucleotide sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes properties such as." ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0912 ], - :operation_0262 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0912 ], + ns1:operation_0262 . -:operation_0463 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence." ; + ns2:hasExactSynonym "miRNA prediction", "microRNA detection", "microRNA target detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0443 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0443 . -:operation_0464 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict tRNA genes in genomic sequences (tRNA)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0659 ], - :operation_2454 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_2454 . -:operation_0465 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0659 ], - :operation_0443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_0443 . -:operation_0467 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0267 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0267 ; + ns2:hasDefinition "Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0267 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0468 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict helical secondary structure of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267 . -:operation_0469 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict turn structure (for example beta hairpin turns) of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267 . -:operation_0470 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267 . -:operation_0471 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3092 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict cysteine bonding state and disulfide bond partners in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3092 . -:operation_0472 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0269 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Not sustainable to have protein type-specific concepts." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0269 ; + ns2:hasDefinition "Predict G protein-coupled receptors (GPCR)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0269 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0476 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict tertiary structure of protein sequence(s) without homologs of known structure." ; + ns2:hasExactSynonym "de novo structure prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0474 . + rdfs:subClassOf ns1:operation_0474 . -:operation_0479 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model protein backbone conformation." ; + ns2:hasExactSynonym "Protein modelling (backbone)" ; + ns2:hasNarrowSynonym "Design optimization", "Epitope grafting", "Scaffold search", "Scaffold selection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0477 . -:operation_0481 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model loop conformation in protein structures." ; + ns2:hasExactSynonym "Protein loop modelling", "Protein modelling (loops)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0477 . + rdfs:subClassOf ns1:operation_0477 . -:operation_0485 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2870 ], - :operation_2944 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2870 ], + ns1:operation_2944 . -:operation_0486 a owl:Class ; +ns1:operation_0486 a owl:Class ; rdfs:label "Functional mapping" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0282 ; - oboInOwl:hasDefinition "Map the genetic architecture of dynamic complex traits." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0282 ; + ns2:hasDefinition "Map the genetic architecture of dynamic complex traits." ; + ns2:inSubset ns4: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Haplotype inference", "Haplotype map generation", "Haplotype reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1863 ], + ns1:operation_0282 . -:operation_0488 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0927 ], + ns1:operation_0283 . -:operation_0489 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict genetic code from analysis of codon usage data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1598 ], - :operation_0286, - :operation_2423 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1598 ], + ns1:operation_0286, + ns1:operation_2423 . -:operation_0490 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render a representation of a distribution that consists of group of data points plotted on a simple scale." ; + ns2:hasExactSynonym "Categorical plot plotting", "Dotplot plotting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0862 ], + ns1:operation_0288, + ns1:operation_0564 . -:operation_0492 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align more than two molecular sequences." ; + ns2:hasExactSynonym "Multiple alignment" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0292 . -:operation_0493 a owl:Class ; +ns1:operation_0493 a owl:Class ; rdfs:label "Pairwise sequence alignment generation (local)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0491, - :operation_0495 ; - oboInOwl:hasDefinition "Locally align exactly two molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0491, + ns1:operation_0495 ; + ns2:hasDefinition "Locally align exactly two molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Local alignment methods identify regions of local similarity." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0494 a owl:Class ; +ns1:operation_0494 a owl:Class ; rdfs:label "Pairwise sequence alignment generation (global)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0491, - :operation_0496 ; - oboInOwl:hasDefinition "Globally align exactly two molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0491, + ns1:operation_0496 ; + ns2:hasDefinition "Globally align exactly two molecular sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0292 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0292 ; + ns2:hasDefinition "Align two or more molecular sequences with user-defined constraints." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0292 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0498 a owl:Class ; +ns1:operation_0498 a owl:Class ; rdfs:label "Consensus-based sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:hasDefinition "Align two or more molecular sequences using multiple methods to achieve higher quality." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0292 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:hasDefinition "Align two or more molecular sequences using multiple methods to achieve higher quality." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0292 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0499 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree." ; + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:operation_0292 . -:operation_0500 a owl:Class ; +ns1:operation_0500 a owl:Class ; rdfs:label "Secondary structure alignment generation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2928 ; - oboInOwl:hasDefinition "Align molecular secondary structure (represented as a 1D string)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2928 ; + ns2:hasDefinition "Align molecular secondary structure (represented as a 1D string)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0501 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2488 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2488 ; + ns2:hasDefinition "Align protein secondary structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2488 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0502 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align RNA secondary structures." ; + ns2:hasExactSynonym "RNA secondary structure alignment construction", "RNA secondary structure alignment generation", "Secondary structure alignment (RNA)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0881 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0881 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0880 ], - :operation_2439, - :operation_3429 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0880 ], + ns1:operation_2439, + ns1:operation_3429 . -:operation_0505 a owl:Class ; +ns1:operation_0505 a owl:Class ; rdfs:label "Structure alignment (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0295 ; - oboInOwl:hasDefinition "Align protein tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0295 ; + ns2:hasDefinition "Align protein tertiary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0506 a owl:Class ; +ns1:operation_0506 a owl:Class ; rdfs:label "Structure alignment (RNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0295 ; - oboInOwl:hasDefinition "Align RNA tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0295 ; + ns2:hasDefinition "Align RNA tertiary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0507 a owl:Class ; +ns1:operation_0507 a owl:Class ; rdfs:label "Pairwise structure alignment generation (local)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0295, - :operation_0509 ; - oboInOwl:hasDefinition "Locally align (superimpose) exactly two molecular tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0295, + ns1:operation_0509 ; + ns2:hasDefinition "Locally align (superimpose) exactly two molecular tertiary structures." ; + ns2:inSubset ns4: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 ; +ns1:operation_0508 a owl:Class ; rdfs:label "Pairwise structure alignment generation (global)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0295, - :operation_0510 ; - oboInOwl:hasDefinition "Globally align (superimpose) exactly two molecular tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0295, + ns1:operation_0510 ; + ns2:hasDefinition "Globally align (superimpose) exactly two molecular tertiary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Global alignment methods identify similarity across the entire structures." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0511 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns1:oldParent ns1:operation_0298 ; + ns2:consider ns1:operation_0292, + ns1:operation_0300 ; + ns2:hasDefinition "Align exactly two molecular profiles." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns1:oldParent ns1:operation_0298 ; + ns2:consider ns1:operation_0292, + ns1:operation_0300 ; + ns2:hasDefinition "Align two or more molecular profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0513 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns1:oldParent ns1:operation_0299 ; + ns2:consider ns1:operation_0294, + ns1:operation_0295, + ns1:operation_0503 ; + ns2:hasDefinition "Align exactly two molecular Structural (3D) profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0514 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns1:oldParent ns1:operation_0299 ; + ns2:consider ns1:operation_0294, + ns1:operation_0295, + ns1:operation_0504 ; + ns2:hasDefinition "Align two or more molecular 3D profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0515 a owl:Class ; +ns1:operation_0515 a owl:Class ; rdfs:label "Data retrieval (tool metadata)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0516 a owl:Class ; +ns1:operation_0516 a owl:Class ; rdfs:label "Data retrieval (database metadata)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0517 a owl:Class ; +ns1:operation_0517 a owl:Class ; rdfs:label "PCR primer design (for large scale sequencing)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for large scale sequencing." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for large scale sequencing." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0518 a owl:Class ; +ns1:operation_0518 a owl:Class ; rdfs:label "PCR primer design (for genotyping polymorphisms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0519 a owl:Class ; +ns1:operation_0519 a owl:Class ; rdfs:label "PCR primer design (for gene transcription profiling)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for gene transcription profiling." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for gene transcription profiling." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0520 a owl:Class ; +ns1:operation_0520 a owl:Class ; rdfs:label "PCR primer design (for conserved primers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers that are conserved across multiple genomes or species." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers that are conserved across multiple genomes or species." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0521 a owl:Class ; +ns1:operation_0521 a owl:Class ; rdfs:label "PCR primer design (based on gene structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers based on gene structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers based on gene structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0522 a owl:Class ; +ns1:operation_0522 a owl:Class ; rdfs:label "PCR primer design (for methylation PCRs)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for methylation PCRs." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for methylation PCRs." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0526 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence assembly for EST sequences (transcribed mRNA)." ; + ns2:hasExactSynonym "Sequence assembly (EST assembly)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0310 . -:operation_0527 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data." ; + ns2:hasExactSynonym "Tag to gene assignment" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0226, + ns1:operation_2520 . -:operation_0528 a owl:Class ; +ns1:operation_0528 a owl:Class ; rdfs:label "SAGE data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) serial analysis of gene expression (SAGE) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) serial analysis of gene expression (SAGE) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0529 a owl:Class ; +ns1:operation_0529 a owl:Class ; rdfs:label "MPSS data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) massively parallel signature sequencing (MPSS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) massively parallel signature sequencing (MPSS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0530 a owl:Class ; +ns1:operation_0530 a owl:Class ; rdfs:label "SBS data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) sequencing by synthesis (SBS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) sequencing by synthesis (SBS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0531 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a heat map of expression data from e.g. microarray data." ; + ns2:hasExactSynonym "Heat map construction", "Heatmap generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1636 ], + ns1:operation_0571, + ns1:operation_3429 . -:operation_0532 a owl:Class ; +ns1:operation_0532 a owl:Class ; rdfs:label "Gene expression profile analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse one or more gene expression profiles, typically to interpret them in functional terms." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse one or more gene expression profiles, typically to interpret them in functional terms." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0533 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway." ; + ns2:hasExactSynonym "Pathway mapping" ; + ns2:hasNarrowSynonym "Gene expression profile pathway mapping", "Gene to pathway mapping", "Gene-to-pathway mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2984 ], - :operation_2429, - :operation_2495, - :operation_3928 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2984 ], + ns1:operation_2429, + ns1:operation_2495, + ns1:operation_3928 . -:operation_0534 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0319 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0319 ; + ns2:hasDefinition "Assign secondary structure from protein coordinate data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0319 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0535 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0319 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0319 ; + ns2:hasDefinition "Assign secondary structure from circular dichroism (CD) spectroscopic data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0319 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0536 a owl:Class ; +ns1:operation_0536 a owl:Class ; rdfs:label "Protein structure assignment (from X-ray crystallographic data)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0320 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0320 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0537 a owl:Class ; +ns1:operation_0537 a owl:Class ; rdfs:label "Protein structure assignment (from NMR data)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0320 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0320 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0540 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree construction from molecular sequences." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from molecular sequences)", "Phylogenetic tree generation (from molecular sequences)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0538, + ns1:operation_2403 . -:operation_0541 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree construction from continuous quantitative character data." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from continuous quantitative characters)", "Phylogenetic tree generation (from continuous quantitative characters)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1426 ], - :operation_0538 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1426 ], + ns1:operation_0538 . -:operation_0542 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree construction from gene frequency data." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from gene frequencies)", "Phylogenetic tree generation (from gene frequencies)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2873 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :operation_0538 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2873 ], + ns1:operation_0538 . -:operation_0543 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from polymorphism data)", "Phylogenetic tree generation (from polymorphism data)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0199 ], - :operation_0538 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], + ns1:operation_0538 . -:operation_0544 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison." ; + ns2:hasExactSynonym "Phylogenetic species tree construction", "Phylogenetic species tree generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0323 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0323 . -:operation_0545 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic tree construction (parsimony methods)", "Phylogenetic tree generation (parsimony methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes evolutionary parsimony (invariants) methods." ; - rdfs:subClassOf :operation_0539 . + rdfs:subClassOf ns1:operation_0539 . -:operation_0546 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances." ; + ns2:hasExactSynonym "Phylogenetic tree construction (minimum distance methods)", "Phylogenetic tree generation (minimum distance methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes neighbor joining (NJ) clustering method." ; - rdfs:subClassOf :operation_0539 . + rdfs:subClassOf ns1:operation_0539 . -:operation_0547 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution." ; + ns2:hasExactSynonym "Phylogenetic tree construction (maximum likelihood and Bayesian methods)", "Phylogenetic tree generation (maximum likelihood and Bayesian methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0539 . -:operation_0548 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely." ; + ns2:hasExactSynonym "Phylogenetic tree construction (quartet methods)", "Phylogenetic tree generation (quartet methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0539 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0539 . -:operation_0549 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms." ; + ns2:hasExactSynonym "Phylogenetic tree construction (AI methods)", "Phylogenetic tree generation (AI methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0539 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0539 . -:operation_0550 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment." ; + ns2:hasExactSynonym "Nucleotide substitution modelling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1439 ], - :operation_0286, - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1439 ], + ns1:operation_0286, + ns1:operation_2426 . -:operation_0551 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0324 . - -:operation_0552 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the shape (topology) of a phylogenetic tree." ; + ns2:hasExactSynonym "Phylogenetic tree analysis (shape)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0324 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0324, - :operation_2428 . - -:operation_0553 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0324, + ns1:operation_2428 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic tree analysis (gene family prediction)" ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_0916 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0194 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0194 ], - :operation_0323 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0916 ], + ns1:operation_0323 . -:operation_0554 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:hasExactSynonym "Phylogenetic tree analysis (natural selection)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0324 . -:operation_0555 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees to produce a consensus tree." ; + ns2:hasExactSynonym "Phylogenetic tree construction (consensus)", "Phylogenetic tree generation (consensus)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods typically test for topological similarity between trees using for example a congruence index." ; - rdfs:subClassOf :operation_0323, - :operation_0325 . + rdfs:subClassOf ns1:operation_0323, + ns1:operation_0325 . -:operation_0556 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees to detect subtrees or supertrees." ; + ns2:hasExactSynonym "Phylogenetic sub/super tree detection" ; + ns2:hasNarrowSynonym "Subtree construction", "Supertree construction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0325 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0325 . -:operation_0557 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees to calculate distances between trees." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1442 ], - :operation_0325 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1442 ], + ns1:operation_0325 . -:operation_0558 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotate a phylogenetic tree with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso "http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation" ; - rdfs:subClassOf :operation_0226 . + rdfs:subClassOf ns1:operation_0226 . -:operation_0559 a owl:Class ; +ns1:operation_0559 a owl:Class ; rdfs:label "Immunogenicity prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Predict and optimise peptide ligands that elicit an immunological response." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Predict and optimise peptide ligands that elicit an immunological response." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0560 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict or optimise DNA to elicit (via DNA vaccination) an immunological response." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0804 ], - :operation_3095 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], + ns1:operation_3095 . -:operation_0561 a owl:Class ; +ns1:operation_0561 a owl:Class ; rdfs:label "Sequence formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Reformat (a file or other report of) molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Reformat (a file or other report of) molecular sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0562 a owl:Class ; +ns1:operation_0562 a owl:Class ; rdfs:label "Sequence alignment formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Reformat (a file or other report of) molecular sequence alignment(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Reformat (a file or other report of) molecular sequence alignment(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0563 a owl:Class ; +ns1:operation_0563 a owl:Class ; rdfs:label "Codon usage table formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Reformat a codon usage table." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Reformat a codon usage table." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0565 a owl:Class ; +ns1:operation_0565 a owl:Class ; rdfs:label "Sequence alignment visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "Visualise, format or print a molecular sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0564 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "Visualise, format or print a molecular sequence alignment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0564 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0566 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise, format or render sequence clusters." ; + ns2:hasExactSynonym "Sequence cluster rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1235 ], - :operation_0337 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1235 ], + ns1:operation_0337 . -:operation_0567 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0872 ], - :operation_0324, - :operation_0337 . - -:operation_0568 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render or visualise a phylogenetic tree." ; + ns2:hasExactSynonym "Phylogenetic tree rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0872 ], + ns1:operation_0324, + ns1:operation_0337 . + +ns1:operation_0568 a owl:Class ; rdfs:label "RNA secondary structure visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "Visualise RNA secondary structure, knots, pseudoknots etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0570 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "Visualise RNA secondary structure, knots, pseudoknots etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0570 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0569 a owl:Class ; +ns1:operation_0569 a owl:Class ; rdfs:label "Protein secondary structure visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "Render and visualise protein secondary structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0570 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "Render and visualise protein secondary structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0570 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0572 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3925 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_3083 ; + ns2:hasDefinition "Identify and analyse networks of protein interactions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3925 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0574 a owl:Class ; +ns1:operation_0574 a owl:Class ; rdfs:label "Sequence motif rendering" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0564 ; - oboInOwl:hasDefinition "Render a sequence with motifs." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0564 ; + ns2:hasDefinition "Render a sequence with motifs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0577 a owl:Class ; +ns1:operation_0577 a owl:Class ; rdfs:label "DNA linear map rendering" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0573 ; - oboInOwl:hasDefinition "Draw a linear maps of DNA." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0573 ; + ns2:hasDefinition "Draw a linear maps of DNA." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0578 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0573 . - -:operation_0579 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "DNA circular map rendering" ; + ns2:hasDefinition "Draw a circular maps of DNA, for example a plasmid map." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0573 . + +ns1:operation_0579 a owl:Class ; rdfs:label "Operon drawing" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Visualise operon structure etc." ; - oboInOwl:hasExactSynonym "Operon rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise operon structure etc." ; + ns2:hasExactSynonym "Operon rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], - :operation_0573 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_0573 . -:operation_1768 a owl:Class ; +ns1:operation_1768 a owl:Class ; rdfs:label "Nucleic acid folding family identification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0483 ; - oboInOwl:hasDefinition "Identify folding families of related RNAs." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0483 ; + ns2:hasDefinition "Identify folding families of related RNAs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1769 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0279 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:operation_0279 ; + ns2:hasDefinition "Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0279 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1774 a owl:Class ; +ns1:operation_1774 a owl:Class ; rdfs:label "Annotation retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve existing annotation (or documentation), typically annotation on a database entity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve existing annotation (or documentation), typically annotation on a database entity." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the functional properties of two or more proteins." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_1777, - :operation_2997 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_1777, + ns1:operation_2997 . -:operation_1780 a owl:Class ; +ns1:operation_1780 a owl:Class ; rdfs:label "Sequence submission" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_3431 ; - oboInOwl:hasDefinition "Submit a molecular sequence to a database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_3431 ; + ns2:hasDefinition "Submit a molecular sequence to a database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1812 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:UploadPDB" ; + ns2:hasDefinition "Parse, prepare or load a user-specified data file so that it is available for use." ; + ns2:hasExactSynonym "Data loading", "Loading" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0842 ], - :operation_2409 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0842 ], + ns1:operation_2409 . -:operation_1813 a owl:Class ; +ns1:operation_1813 a owl:Class ; rdfs:label "Sequence retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a sequence data resource (typically a database) and retrieve sequences and / or annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a sequence data resource (typically a database) and retrieve sequences and / or annotation." ; + ns2:inSubset ns4: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 ; +ns1:operation_1814 a owl:Class ; rdfs:label "Structure retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDbXref "WHATIF:DownloadPDB", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2: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 edam:obsolete ; + ns2:hasDefinition "Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:GetSurfaceDots" ; + ns2:hasDefinition "Calculate the positions of dots that are homogeneously distributed over the surface of a molecule." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "A dot has three coordinates (x,y,z) and (typically) a color." ; - rdfs:subClassOf :operation_0570, - :operation_3351 . + rdfs:subClassOf ns1:operation_0570, + ns1:operation_3351 . -:operation_1817 a owl:Class ; +ns1:operation_1817 a owl:Class ; rdfs:label "Protein atom surface calculation (accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each atom in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each atom in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:comment "Waters are not considered." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1818 a owl:Class ; +ns1:operation_1818 a owl:Class ; rdfs:label "Protein atom surface calculation (accessible molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:comment "Waters are not considered." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1819 a owl:Class ; +ns1:operation_1819 a owl:Class ; rdfs:label "Protein residue surface calculation (accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each residue in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each residue in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1820 a owl:Class ; rdfs:label "Protein residue surface calculation (vacuum accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1821 a owl:Class ; rdfs:label "Protein residue surface calculation (accessible molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1822 a owl:Class ; rdfs:label "Protein residue surface calculation (vacuum molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1823 a owl:Class ; rdfs:label "Protein surface calculation (accessible molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1824 a owl:Class ; +ns1:operation_1824 a owl:Class ; rdfs:label "Protein surface calculation (accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for a structure as a whole." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible surface') for a structure as a whole." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1825 a owl:Class ; +ns1:operation_1825 a owl:Class ; rdfs:label "Backbone torsion angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate for each residue in a protein structure all its backbone torsion angles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate for each residue in a protein structure all its backbone torsion angles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0249 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1826 a owl:Class ; +ns1:operation_1826 a owl:Class ; rdfs:label "Full torsion angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate for each residue in a protein structure all its torsion angles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate for each residue in a protein structure all its torsion angles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0249 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1827 a owl:Class ; +ns1:operation_1827 a owl:Class ; rdfs:label "Cysteine torsion angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate for each cysteine (bridge) all its torsion angles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate for each cysteine (bridge) all its torsion angles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0249 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1828 a owl:Class ; +ns1:operation_1828 a owl:Class ; rdfs:label "Tau angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "For each amino acid in a protein structure calculate the backbone angle tau." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "For each amino acid in a protein structure calculate the backbone angle tau." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_1850 . - -:operation_1830 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowCysteineBridge" ; + ns2:hasDefinition "Detect cysteine bridges (from coordinate data) in a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_1850 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowCysteineFree" ; + ns2:hasDefinition "Detect free cysteines in a protein structure." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_1850 . -:operation_1831 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0248, - :operation_1850 . - -:operation_1832 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowCysteineMetal" ; + ns2:hasDefinition "Detect cysteines that are bound to metal in a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0248, + ns1:operation_1850 . + +ns1:operation_1832 a owl:Class ; rdfs:label "Residue contact calculation (residue-nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate protein residue contacts with nucleic acids in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate protein residue contacts with nucleic acids in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1834 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0248 . - -:operation_1835 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate protein residue contacts with metal in a structure." ; + ns2:hasExactSynonym "Residue-metal contact calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0248 . + +ns1:operation_1835 a owl:Class ; rdfs:label "Residue contact calculation (residue-negative ion)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate ion contacts in a structure (all ions for all side chain atoms)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate ion contacts in a structure (all ions for all side chain atoms)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1836 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0321 . - -:operation_1837 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowBumps" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0321 . + +ns1:operation_1837 a owl:Class ; rdfs:label "Residue symmetry contact calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDbXref "WHATIF:SymmetryContact" ; - oboInOwl:hasDefinition "Calculate the number of symmetry contacts made by residues in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF:SymmetryContact" ; + ns2:hasDefinition "Calculate the number of symmetry contacts made by residues in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1838 a owl:Class ; rdfs:label "Residue contact calculation (residue-ligand)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate contacts between residues and ligands in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate contacts between residues and ligands in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1839 a owl:Class ; +ns1:operation_1839 a owl:Class ; rdfs:label "Salt bridge calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:HasSaltBridge", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:HasSaltBridge", "WHATIF:HasSaltBridgePlus", "WHATIF:ShowSaltBridges", "WHATIF:ShowSaltBridgesH" ; - oboInOwl:hasDefinition "Calculate (and possibly score) salt bridges in a protein structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasDefinition "Calculate (and possibly score) salt bridges in a protein structure." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0248 . -:operation_1841 a owl:Class ; +ns1:operation_1841 a owl:Class ; rdfs:label "Rotamer likelihood prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDbXref "WHATIF:ShowLikelyRotamers", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF:ShowLikelyRotamers", "WHATIF:ShowLikelyRotamers100", "WHATIF:ShowLikelyRotamers200", "WHATIF:ShowLikelyRotamers300", @@ -20291,3138 +20288,3138 @@ experiments employing a combination of technologies.""" ; "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 edam:obsolete ; - oboInOwl:replacedBy :operation_0480 ; + ns2:hasDefinition "Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1842 a owl:Class ; rdfs:label "Proline mutation value calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0331 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF:ProlineMutationValue" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0331 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1843 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0321 . - -:operation_1845 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PackingQuality" ; + ns2:hasDefinition "Identify poorly packed residues in protein structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0321 . + +ns1:operation_1845 a owl:Class ; rdfs:label "PDB file sequence retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: PDB_sequence" ; - oboInOwl:hasDefinition "Extract a molecular sequence from a PDB file." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2422 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PDB_sequence" ; + ns2:hasDefinition "Extract a molecular sequence from a PDB file." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2422 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1846 a owl:Class ; +ns1:operation_1846 a owl:Class ; rdfs:label "HET group detection" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify HET groups in PDB files." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify HET groups in PDB files." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1847 a owl:Class ; rdfs:label "DSSP secondary structure assignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0319 ; - oboInOwl:hasDefinition "Determine for residue the DSSP determined secondary structure in three-state (HSC)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0319 ; + ns2:hasDefinition "Determine for residue the DSSP determined secondary structure in three-state (HSC)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1848 a owl:Class ; +ns1:operation_1848 a owl:Class ; rdfs:label "Structure formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDbXref "WHATIF: PDBasXML" ; - oboInOwl:hasDefinition "Reformat (a file or other report of) tertiary structure data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF: PDBasXML" ; + ns2:hasDefinition "Reformat (a file or other report of) tertiary structure data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1913 a owl:Class ; +ns1:operation_1913 a owl:Class ; rdfs:label "Residue validation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify poor quality amino acid positions in protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0321 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify poor quality amino acid positions in protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0321 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1914 a owl:Class ; +ns1:operation_1914 a owl:Class ; rdfs:label "Structure retrieval (water)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDbXref "WHATIF:MovedWaterPDB" ; - oboInOwl:hasDefinition "Query a tertiary structure database and retrieve water molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDbXref "WHATIF:MovedWaterPDB" ; + ns2:hasDefinition "Query a tertiary structure database and retrieve water molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2008 a owl:Class ; +ns1:operation_2008 a owl:Class ; rdfs:label "siRNA duplex prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identify or predict siRNA duplexes in RNA." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict siRNA duplexes in RNA." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0659 ], - :operation_0443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_0443 . -:operation_2089 a owl:Class ; +ns1:operation_2089 a owl:Class ; rdfs:label "Sequence alignment refinement" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Refine an existing sequence alignment." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0258, - :operation_2425 . - -:operation_2120 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Refine an existing sequence alignment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0258, + ns1:operation_2425 . + +ns1:operation_2120 a owl:Class ; rdfs:label "Listfile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2409 ; - oboInOwl:hasDefinition "Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2409 ; + ns2:hasDefinition "Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2121 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231, - :operation_2403 . - -:operation_2122 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231, + ns1:operation_2403 . + +ns1:operation_2122 a owl:Class ; rdfs:label "Sequence alignment file processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2409 ; + ns2:hasDefinition "Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2123 a owl:Class ; +ns1:operation_2123 a owl:Class ; rdfs:label "Small molecule data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) physicochemical property data for small molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) physicochemical property data for small molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2222 a owl:Class ; +ns1:operation_2222 a owl:Class ; rdfs:label "Data retrieval (ontology annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Search and retrieve documentation on a bioinformatics ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search and retrieve documentation on a bioinformatics ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2224 a owl:Class ; +ns1:operation_2224 a owl:Class ; rdfs:label "Data retrieval (ontology concept)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query an ontology and retrieve concepts or relations." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query an ontology and retrieve concepts or relations." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2233 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2451 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2451 . -:operation_2234 a owl:Class ; +ns1:operation_2234 a owl:Class ; rdfs:label "Structure file processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2409 ; - oboInOwl:hasDefinition "Perform basic (non-analytical) operations on a file of molecular tertiary structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2409 ; + ns2:hasDefinition "Perform basic (non-analytical) operations on a file of molecular tertiary structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2237 a owl:Class ; +ns1:operation_2237 a owl:Class ; rdfs:label "Data retrieval (sequence profile)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a profile data resource and retrieve one or more profile(s) and / or associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a profile data resource and retrieve one or more profile(s) and / or associated annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data." ; + ns2:hasExactSynonym "3D-1D scoring matrix construction" ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1499 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_0250, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1499 ], + ns1:operation_0250, + ns1:operation_3429 . -:operation_2241 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2992 ], - :operation_0270, - :operation_0570 . - -:operation_2246 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise transmembrane proteins, typically the transmembrane regions within a sequence." ; + ns2:hasExactSynonym "Transmembrane protein rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2992 ], + ns1:operation_0270, + ns1:operation_0570 . + +ns1:operation_2246 a owl:Class ; rdfs:label "Demonstration" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0004 ; - oboInOwl:hasDefinition "An operation performing purely illustrative (pedagogical) purposes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0004 ; + ns2:hasDefinition "An operation performing purely illustrative (pedagogical) purposes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2264 a owl:Class ; +ns1:operation_2264 a owl:Class ; rdfs:label "Data retrieval (pathway or network)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a biological pathways database and retrieve annotation on one or more pathways." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a biological pathways database and retrieve annotation on one or more pathways." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2265 a owl:Class ; +ns1:operation_2265 a owl:Class ; rdfs:label "Data retrieval (identifier)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a database and retrieve one or more data identifiers." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a database and retrieve one or more data identifiers." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2284 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0236, - :operation_0564 . - -:operation_2405 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a density plot (of base composition) for a nucleotide sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0236, + ns1:operation_0564 . + +ns1:operation_2405 a owl:Class ; rdfs:label "Protein interaction data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2949 ; - oboInOwl:hasDefinition "Process (read and / or write) protein interaction data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2949 ; + ns2:hasDefinition "Process (read and / or write) protein interaction data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2407 a owl:Class ; +ns1:operation_2407 a owl:Class ; rdfs:label "Annotation processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2408 a owl:Class ; +ns1:operation_2408 a owl:Class ; rdfs:label "Sequence feature analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0253 ; - oboInOwl:hasDefinition "Analyse features in molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0253 ; + ns2:hasDefinition "Analyse features in molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2410 a owl:Class ; +ns1:operation_2410 a owl:Class ; rdfs:label "Gene expression analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse gene expression and regulation data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse gene expression and regulation data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2411 a owl:Class ; +ns1:operation_2411 a owl:Class ; rdfs:label "Structural profile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0297 ; + ns2:hasDefinition "Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2412 a owl:Class ; +ns1:operation_2412 a owl:Class ; rdfs:label "Data index processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0227 ; - oboInOwl:hasDefinition "Process (read and / or write) an index of (typically a file of) biological data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0227 ; + ns2:hasDefinition "Process (read and / or write) an index of (typically a file of) biological data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2413 a owl:Class ; +ns1:operation_2413 a owl:Class ; rdfs:label "Sequence profile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0296 ; - oboInOwl:hasDefinition "Process (read and / or write) some type of sequence profile." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0296 ; + ns2:hasDefinition "Process (read and / or write) some type of sequence profile." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2414 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_1777 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_2945 ; + ns2:hasDefinition "Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_1777 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2417 a owl:Class ; +ns1:operation_2417 a owl:Class ; rdfs:label "Physicochemical property data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2945 ; - oboInOwl:hasDefinition "Process (read and / or write) data on the physicochemical property of a molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2945 ; + ns2:hasDefinition "Process (read and / or write) data on the physicochemical property of a molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2420 a owl:Class ; +ns1:operation_2420 a owl:Class ; rdfs:label "Operation (typed)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Process (read and / or write) data of a specific type, for example applying analytical methods." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2945 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Process (read and / or write) data of a specific type, for example applying analytical methods." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2945 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2427 a owl:Class ; +ns1:operation_2427 a owl:Class ; rdfs:label "Data handling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Perform basic operations on some data or a database." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2409 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Perform basic operations on some data or a database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2409 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2432 a owl:Class ; +ns1:operation_2432 a owl:Class ; rdfs:label "Microarray data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) microarray data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) microarray data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2433 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0286 ; + ns2:consider ns1:operation_0284, + ns1:operation_0285 ; + ns2:hasDefinition "Process (read and / or write) a codon usage table." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2434 a owl:Class ; +ns1:operation_2434 a owl:Class ; rdfs:label "Data retrieval (codon usage table)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve a codon usage table and / or associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve a codon usage table and / or associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2435 a owl:Class ; +ns1:operation_2435 a owl:Class ; rdfs:label "Gene expression profile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) a gene expression profile." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) a gene expression profile." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2438 a owl:Class ; +ns1:operation_2438 a owl:Class ; rdfs:label "Pathway or network processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :operation_3927, - :operation_3928 ; - oboInOwl:hasDefinition "Generate, analyse or handle a biological pathway or network." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Generate, analyse or handle a biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2440 a owl:Class ; +ns1:operation_2440 a owl:Class ; rdfs:label "Structure processing (RNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "Process (read and / or write) RNA tertiary structure data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2480 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "Process (read and / or write) RNA tertiary structure data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2480 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2441 a owl:Class ; +ns1:operation_2441 a owl:Class ; rdfs:label "RNA structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict RNA tertiary structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict RNA tertiary structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1465 ], - :operation_0475 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1465 ], + ns1:operation_0475 . -:operation_2442 a owl:Class ; +ns1:operation_2442 a owl:Class ; rdfs:label "DNA structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict DNA tertiary structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict DNA tertiary structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1464 ], - :operation_0475 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1464 ], + ns1:operation_0475 . -:operation_2443 a owl:Class ; +ns1:operation_2443 a owl:Class ; rdfs:label "Phylogenetic tree processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate, process or analyse phylogenetic tree or trees." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0324 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate, process or analyse phylogenetic tree or trees." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0324 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2444 a owl:Class ; +ns1:operation_2444 a owl:Class ; rdfs:label "Protein secondary structure processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2416 ; - oboInOwl:hasDefinition "Process (read and / or write) protein secondary structure data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2416 ; + ns2:hasDefinition "Process (read and / or write) protein secondary structure data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2445 a owl:Class ; +ns1:operation_2445 a owl:Class ; rdfs:label "Protein interaction network processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0276 ; - oboInOwl:hasDefinition "Process (read and / or write) a network of protein interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0276 ; + ns2:hasDefinition "Process (read and / or write) a network of protein interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2446 a owl:Class ; +ns1:operation_2446 a owl:Class ; rdfs:label "Sequence processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2403 ; - oboInOwl:hasDefinition "Process (read and / or write) one or more molecular sequences and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2403 ; + ns2:hasDefinition "Process (read and / or write) one or more molecular sequences and associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2447 a owl:Class ; +ns1:operation_2447 a owl:Class ; rdfs:label "Sequence processing (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) a protein sequence and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2479 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) a protein sequence and associated annotation." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2479 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2448 a owl:Class ; +ns1:operation_2448 a owl:Class ; rdfs:label "Sequence processing (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2478 ; - oboInOwl:hasDefinition "Process (read and / or write) a nucleotide sequence and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2478 ; + ns2:hasDefinition "Process (read and / or write) a nucleotide sequence and associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2452 a owl:Class ; +ns1:operation_2452 a owl:Class ; rdfs:label "Sequence cluster processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0291 ; - oboInOwl:hasDefinition "Process (read and / or write) a sequence cluster." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0291 ; + ns2:hasDefinition "Process (read and / or write) a sequence cluster." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2453 a owl:Class ; +ns1:operation_2453 a owl:Class ; rdfs:label "Feature table processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2403 ; - oboInOwl:hasDefinition "Process (read and / or write) a sequence feature table." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2403 ; + ns2:hasDefinition "Process (read and / or write) a sequence feature table." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2456 a owl:Class ; +ns1:operation_2456 a owl:Class ; rdfs:label "GPCR classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:hasDefinition "Classify G-protein coupled receptors (GPCRs) into families and subfamilies." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2995 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:hasDefinition "Classify G-protein coupled receptors (GPCRs) into families and subfamilies." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2995 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2457 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Not sustainable to have protein type-specific concepts." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0473 ; + ns2:consider ns1:operation_0269 ; + ns2:hasDefinition "Predict G-protein coupled receptor (GPCR) coupling selectivity." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2459 a owl:Class ; +ns1:operation_2459 a owl:Class ; rdfs:label "Structure processing (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) a protein tertiary structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2406 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) a protein tertiary structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2406 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2460 a owl:Class ; +ns1:operation_2460 a owl:Class ; rdfs:label "Protein atom surface calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility for each atom in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility for each atom in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:comment "Waters are not considered." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2461 a owl:Class ; +ns1:operation_2461 a owl:Class ; rdfs:label "Protein residue surface calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility for each residue in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility for each residue in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2462 a owl:Class ; +ns1:operation_2462 a owl:Class ; rdfs:label "Protein surface calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility of a structure as a whole." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility of a structure as a whole." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2463 a owl:Class ; +ns1:operation_2463 a owl:Class ; rdfs:label "Sequence alignment processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0292 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0292 ; + ns2:hasDefinition "Process (read and / or write) a molecular sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2465 a owl:Class ; +ns1:operation_2465 a owl:Class ; rdfs:label "Structure processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular tertiary structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) a molecular tertiary structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2466 a owl:Class ; +ns1:operation_2466 a owl:Class ; rdfs:label "Map annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0362 ; - oboInOwl:hasDefinition "Annotate a DNA map of some type with terms from a controlled vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0362 ; + ns2:hasDefinition "Annotate a DNA map of some type with terms from a controlled vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2467 a owl:Class ; +ns1:operation_2467 a owl:Class ; rdfs:label "Data retrieval (protein annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2468 a owl:Class ; +ns1:operation_2468 a owl:Class ; rdfs:label "Data retrieval (phylogenetic tree)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve a phylogenetic tree from a data resource." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve a phylogenetic tree from a data resource." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2469 a owl:Class ; +ns1:operation_2469 a owl:Class ; rdfs:label "Data retrieval (protein interaction annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2470 a owl:Class ; +ns1:operation_2470 a owl:Class ; rdfs:label "Data retrieval (protein family annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a protein family." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a protein family." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2471 a owl:Class ; +ns1:operation_2471 a owl:Class ; rdfs:label "Data retrieval (RNA family annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on an RNA family." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on an RNA family." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2472 a owl:Class ; +ns1:operation_2472 a owl:Class ; rdfs:label "Data retrieval (gene annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a specific gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a specific gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2473 a owl:Class ; +ns1:operation_2473 a owl:Class ; rdfs:label "Data retrieval (genotype and phenotype annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a specific genotype or phenotype." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a specific genotype or phenotype." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2474 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0247, - :operation_2997 . - -:operation_2475 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the architecture of two or more protein structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0247, + ns1:operation_2997 . + +ns1:operation_2475 a owl:Class ; rdfs:label "Protein architecture recognition" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identify the architecture of a protein structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify the architecture of a protein structure." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0247, + ns1:operation_2423, + ns1:operation_2996 . -:operation_2476 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." ; + ns2:hasExactSynonym "Molecular dynamics simulation" ; + ns2:hasNarrowSynonym "Protein dynamics" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0883 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0176 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0082 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0082 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0176 ], - :operation_2423, - :operation_2426, - :operation_2480 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0883 ], + ns1:operation_2423, + ns1:operation_2426, + ns1:operation_2480 . -:operation_2482 a owl:Class ; +ns1:operation_2482 a owl:Class ; rdfs:label "Secondary structure processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular secondary structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) a molecular secondary structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2485 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render a helical wheel representation of protein secondary structure." ; + ns2:hasExactSynonym "Helical wheel rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2162 ], - :operation_0570 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2162 ], + ns1:operation_0570 . -:operation_2486 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render a topology diagram of protein secondary structure." ; + ns2:hasExactSynonym "Topology diagram rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2992 ], - :operation_0570 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2992 ], + ns1:operation_0570 . -:operation_2489 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the subcellular localisation of a protein sequence." ; + ns2:hasExactSynonym "Protein cellular localization prediction", "Protein subcellular localisation prediction", "Protein targeting prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0140 ], + ns1:operation_1777 . -:operation_2490 a owl:Class ; +ns1:operation_2490 a owl:Class ; rdfs:label "Residue contact calculation (residue-residue)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate contacts between residues in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate contacts between residues in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2491 a owl:Class ; +ns1:operation_2491 a owl:Class ; rdfs:label "Hydrogen bond calculation (inter-residue)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify potential hydrogen bonds between amino acid residues." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0394 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify potential hydrogen bonds between amino acid residues." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0394 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2492 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the interactions of proteins with other proteins." ; + ns2:hasExactSynonym "Protein-protein interaction detection" ; + ns2:hasNarrowSynonym "Protein-protein binding prediction", "Protein-protein interaction prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], - :operation_2949 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_2949 . -:operation_2493 a owl:Class ; +ns1:operation_2493 a owl:Class ; rdfs:label "Codon usage data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0286 ; - oboInOwl:hasDefinition "Process (read and / or write) codon usage data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0286 ; + ns2:hasDefinition "Process (read and / or write) codon usage data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2496 a owl:Class ; +ns1:operation_2496 a owl:Class ; rdfs:label "Gene regulatory network processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) a network of gene regulation." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_1781 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) a network of gene regulation." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_1781 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2498 a owl:Class ; +ns1:operation_2498 a owl:Class ; rdfs:label "Sequencing-based expression profile data analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2500 a owl:Class ; +ns1:operation_2500 a owl:Class ; rdfs:label "Microarray raw data analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse raw microarray data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse raw microarray data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2503 a owl:Class ; +ns1:operation_2503 a owl:Class ; rdfs:label "Sequence data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "Process (read and / or write) molecular sequence data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2403 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "Process (read and / or write) molecular sequence data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2403 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2504 a owl:Class ; +ns1:operation_2504 a owl:Class ; rdfs:label "Structural data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) molecular structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) molecular structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2505 a owl:Class ; +ns1:operation_2505 a owl:Class ; rdfs:label "Text processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0306, - :operation_3778 ; - oboInOwl:hasDefinition "Process (read and / or write) text." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0306, + ns1:operation_3778 ; + ns2:hasDefinition "Process (read and / or write) text." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2506 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2479 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0258, + ns1:operation_2502, + ns1:operation_3023 ; + ns2:hasDefinition "Analyse a protein sequence alignment, typically to detect features or make predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2479 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2507 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2478 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0258, + ns1:operation_2501, + ns1:operation_3024 ; + ns2:hasDefinition "Analyse a protein sequence alignment, typically to detect features or make predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2478 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2508 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2451 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2451, + ns1:operation_2478, + ns1:operation_2998 ; + ns2:hasDefinition "Compare two or more nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2451 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2509 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2451 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2451 ; + ns2:hasDefinition "Compare two or more protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2451 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2510 a owl:Class ; +ns1:operation_2510 a owl:Class ; rdfs:label "DNA back-translation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Back-translate a protein sequence into DNA." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Back-translate a protein sequence into DNA." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0108 ], - :operation_0233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0108 ], + ns1:operation_0233 . -:operation_2511 a owl:Class ; +ns1:operation_2511 a owl:Class ; rdfs:label "Sequence editing (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Edit or change a nucleic acid sequence, either randomly or specifically." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0231 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Edit or change a nucleic acid sequence, either randomly or specifically." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0231 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2512 a owl:Class ; +ns1:operation_2512 a owl:Class ; rdfs:label "Sequence editing (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Edit or change a protein sequence, either randomly or specifically." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0231 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Edit or change a protein sequence, either randomly or specifically." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0231 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2513 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0230 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_0230 ; + ns2:hasDefinition "Generate a nucleic acid sequence by some means." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0230 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2514 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0230 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_0230 ; + ns2:hasDefinition "Generate a protein sequence by some means." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0230 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2515 a owl:Class ; +ns1:operation_2515 a owl:Class ; rdfs:label "Nucleic acid sequence visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Visualise, format or render a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0564 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Visualise, format or render a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_2516 a owl:Class ; rdfs:label "Protein sequence visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Visualise, format or render a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0564 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Visualise, format or render a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_2519 a owl:Class ; rdfs:label "Structure processing (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) nucleic acid tertiary structure data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2480 ; - rdfs:comment :operation_2481 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) nucleic acid tertiary structure data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2480 ; + rdfs:comment ns1:operation_2481 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2521 a owl:Class ; +ns1:operation_2521 a owl:Class ; rdfs:label "Map data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2520 ; - oboInOwl:hasDefinition "Process (read and / or write) a DNA map of some type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2520 ; + ns2:hasDefinition "Process (read and / or write) a DNA map of some type." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2844 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3432 . - -:operation_2871 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Build clusters of similar structures, typically using scores from structural alignment methods." ; + ns2:hasExactSynonym "Structural clustering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3432 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS)." ; + ns2:hasExactSynonym "Sequence mapping" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1279 ], + ns1:operation_2944 . -:operation_2931 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2424 ; + ns2:consider ns1:operation_2487, + ns1:operation_2518 ; + ns2:hasDefinition "Compare two or more molecular secondary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2932 a owl:Class ; +ns1:operation_2932 a owl:Class ; rdfs:label "Hopp and Woods plotting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate a Hopp and Woods plot of antigenicity of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate a Hopp and Woods plot of antigenicity of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2934 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2938 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0337 ; + ns2:hasDefinition "Generate a view of clustered quantitative data, annotated with textual information." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2938 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2935 a owl:Class ; +ns1:operation_2935 a owl:Class ; rdfs:label "Clustering profile plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis." ; + ns2:hasExactSynonym "Clustered quantitative data plotting", "Clustered quantitative data rendering", "Wave graph plotting" ; - oboInOwl:hasNarrowSynonym "Microarray cluster temporal graph rendering", + ns2:hasNarrowSynonym "Microarray cluster temporal graph rendering", "Microarray wave graph plotting", "Microarray wave graph rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0571 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0571 . -:operation_2936 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2938 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0571 ; + ns2:hasDefinition "Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2938 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2937 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a plot of distances (distance or correlation matrix) between expression values." ; + ns2:hasExactSynonym "Distance map rendering", "Distance matrix plotting", "Distance matrix rendering", "Proximity map rendering" ; - oboInOwl:hasNarrowSynonym "Correlation matrix plotting", + ns2:hasNarrowSynonym "Correlation matrix plotting", "Correlation matrix rendering", "Microarray distance map rendering", "Microarray proximity map plotting", "Microarray proximity map rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0571 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0571 . -:operation_2939 a owl:Class ; +ns1:operation_2939 a owl:Class ; rdfs:label "Principal component visualisation" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Examples for visualization are the distribution of variance over the components, loading and score plots." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Examples for visualization are the distribution of variance over the components, loading and score plots." ; + ns2: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." ; + ns2:hasExactSynonym "PCA plotting", "Principal component plotting" ; - oboInOwl:hasNarrowSynonym "ED visualization", + ns2:hasNarrowSynonym "ED visualization", "Essential Dynamics visualization", "Microarray principal component plotting", "Microarray principal component rendering", "PCA visualization", "Principal modes visualization" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 . + rdfs:subClassOf ns1:operation_0337 . -:operation_2940 a owl:Class ; +ns1:operation_2940 a owl:Class ; rdfs:label "Scatter plot plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Comparison of two sets of quantitative data such as two samples of gene expression values." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Comparison of two sets of quantitative data such as two samples of gene expression values." ; + ns2:hasDefinition "Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation." ; + ns2:hasExactSynonym "Scatter chart plotting" ; + ns2:hasNarrowSynonym "Microarray scatter plot plotting", "Microarray scatter plot rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_2941 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0571 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0571 ; + ns2:hasDefinition "Visualise gene expression data where each band (or line graph) corresponds to a sample." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0571 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2942 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise gene expression data after hierarchical clustering for representing hierarchical relationships." ; + ns2:hasExactSynonym "Expression data tree-map rendering", "Treemapping" ; - oboInOwl:hasNarrowSynonym "Microarray tree-map rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Microarray tree-map rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0571 . + rdfs:subClassOf ns1:operation_0571 . -:operation_2943 a owl:Class ; +ns1:operation_2943 a owl:Class ; rdfs:label "Box-Whisker plot plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - 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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles." ; + ns2:hasExactSynonym "Box plot plotting" ; + ns2:hasNarrowSynonym "Microarray Box-Whisker plot plotting" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0337 . + rdfs:subClassOf ns1:operation_0337 . -:operation_2946 a owl:Class ; +ns1:operation_2946 a owl:Class ; rdfs:label "Alignment analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :operation_2928 ; - oboInOwl:hasDefinition "Process or analyse an alignment of molecular sequences or structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:operation_2928 ; + ns2:hasDefinition "Process or analyse an alignment of molecular sequences or structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2947 a owl:Class ; +ns1:operation_2947 a owl:Class ; rdfs:label "Article analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:consider ns1:operation_0306, + ns1:operation_3778 ; + ns2:hasDefinition "Analyse a body of scientific text (typically a full text article from a scientific journal.)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2948 a owl:Class ; +ns1:operation_2948 a owl:Class ; rdfs:label "Molecular interaction analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2949 ; + ns2:hasDefinition "Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2951 a owl:Class ; +ns1:operation_2951 a owl:Class ; rdfs:label "Alignment processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0292, + ns1:operation_0295 ; + ns2:hasDefinition "Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2952 a owl:Class ; +ns1:operation_2952 a owl:Class ; rdfs:label "Structure alignment processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0295 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular tertiary (3D) structure alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0295 ; + ns2:hasDefinition "Process (read and / or write) a molecular tertiary (3D) structure alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2963 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2962 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_2962 ; + ns2:hasDefinition "Generate a codon usage bias plot." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2962 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2964 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1602 ], - :operation_0286 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1602 ], + ns1:operation_0286 . -:operation_2993 a owl:Class ; +ns1:operation_2993 a owl:Class ; rdfs:label "Molecular interaction data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2949 ; - oboInOwl:hasDefinition "Process (read and / or write) molecular interaction data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2949 ; + ns2:hasDefinition "Process (read and / or write) molecular interaction data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3080 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0883 ], - :operation_3096 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0883 ], + ns1:operation_3096 . -:operation_3084 a owl:Class ; +ns1:operation_3084 a owl:Class ; rdfs:label "Protein function prediction (from sequence)" ; - :created_in "beta13" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_1777 ; - oboInOwl:hasDefinition "Predict general (non-positional) functional properties of a protein from analysing its sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_1777 ; + ns2:hasDefinition "Predict general (non-positional) functional properties of a protein from analysing its sequence." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3092 ; + ns1:created_in "beta13" ; + ns1: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\")." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0253, + ns1:operation_2479, + ns1:operation_3092 ; + ns2:hasDefinition "Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3092 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3088 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0250 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0250, + ns1:operation_2479 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0250 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3090 a owl:Class ; +ns1:operation_3090 a owl:Class ; rdfs:label "Protein feature prediction (from structure)" ; - :created_in "beta13" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_3092 ; - oboInOwl:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_3092 ; + ns2:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3093 a owl:Class ; +ns1:operation_3093 a owl:Class ; rdfs:label "Database search (by sequence)" ; - :created_in "beta13" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2421 ; + ns2:hasDefinition "Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3180 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Evaluate a DNA sequence assembly, typically for purposes of quality control." ; + ns2:hasExactSynonym "Assembly QC", "Assembly quality evaluation", "Sequence assembly QC", "Sequence assembly quality evaluation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3181 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0925 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0925 ], - :operation_2428, - :operation_3218 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3181 ], + ns1:operation_2428, + ns1:operation_3218 . -:operation_3182 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Align two or more (tpyically huge) molecular sequences that represent genomes." ; + ns2:hasExactSynonym "Genome alignment construction", "Whole genome alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0292, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0292, + ns1:operation_3918 . -:operation_3183 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0310 . + ns1:created_in "1.1" ; + ns2:hasDefinition "Reconstruction of a sequence assembly in a localised area." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0310 . -:operation_3184 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Render and visualise a DNA sequence assembly." ; + ns2:hasExactSynonym "Assembly rendering", "Assembly visualisation", "Sequence assembly rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0564 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0564 . -:operation_3185 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer." ; + ns2:hasExactSynonym "Base calling", "Phred base calling", "Phred base-calling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3168 ], - :operation_0230 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3168 ], + ns1:operation_0230 . -:operation_3186 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome." ; + ns2:hasExactSynonym "Bisulfite read mapping", "Bisulfite sequence alignment", "Bisulfite sequence mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2944, + ns1:operation_3204 . -:operation_3187 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3218 . + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3218 . -:operation_3189 a owl:Class ; +ns1:operation_3189 a owl:Class ; rdfs:label "Trim ends" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove misleading ends." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3192 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove misleading ends." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_3190 a owl:Class ; rdfs:label "Trim vector" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3192 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3192 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3191 a owl:Class ; +ns1:operation_3191 a owl:Class ; rdfs:label "Trim to reference" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3192 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3192 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3194 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Compare the features of two genome sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0256, + ns1:operation_3918 . -:operation_3199 a owl:Class ; +ns1:operation_3199 a owl:Class ; rdfs:label "Split read mapping" ; - :created_in "1.1" ; - oboInOwl:hasDefinition "A varient of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation." ; - oboInOwl:hasExactSynonym "Split-read mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3198 . - -:operation_3200 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "A varient of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation." ; + ns2:hasExactSynonym "Split-read mapping" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3198 . + +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Community profiling", "Sample barcoding" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2478 . + rdfs:subClassOf ns1:operation_2478 . -:operation_3201 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0484 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0484 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0484 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3202 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3227 ; + ns1:created_in "1.1" ; + ns1:deprecation_comment "\"Polymorphism detection\" and \"Variant calling\" are essentially the same thing - keeping the later as a more prevalent term nowadays." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2478, + ns1:operation_3197 ; + ns2:hasDefinition "Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3227 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_3203 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . - -:operation_3205 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Visualise, format or render an image of a Chromatogram." ; + ns2:hasExactSynonym "Chromatogram viewing" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3204 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_3204 ; + ns2:hasDefinition "Determine cytosine methylation status of specific positions in a nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3204 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3206 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Genome methylation analysis", "Global methylation analysis", "Methylation level analysis (global)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204, + ns1:operation_3918 . -:operation_3207 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Analysing the DNA methylation of specific genes or regions of interest." ; + ns2:hasExactSynonym "Gene-specific methylation analysis", "Methylation level analysis (gene-specific)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204 . -:operation_3208 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence." ; + ns2:hasExactSynonym "Genome browser", "Genome browsing", "Genome rendering", "Genome viewing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0564, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0564, + ns1:operation_3918 . -:operation_3209 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2451, - :operation_3918 . - -:operation_3212 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Compare the sequence or features of two or more genomes, for example, to find matching regions." ; + ns2:hasExactSynonym "Genomic region matching" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2451, + ns1:operation_3918 . + +ns1:operation_3212 a owl:Class ; rdfs:label "Genome indexing (Burrows-Wheeler)" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate an index of a genome sequence using the Burrows-Wheeler algorithm." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3211 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate an index of a genome sequence using the Burrows-Wheeler algorithm." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_3213 a owl:Class ; rdfs:label "Genome indexing (suffix arrays)" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate an index of a genome sequence using a suffix arrays algorithm." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3211 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate an index of a genome sequence using a suffix arrays algorithm." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment." ; + ns2:hasExactSynonym "Peak assignment", "Peak finding" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3217 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3216 . -:operation_3219 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Pre-process sequence reads to ensure (or improve) quality and reliability." ; + ns2:hasExactSynonym "Sequence read pre-processing" ; + ns2:inSubset ns4:edam, + ns4: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 sequnces 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 . + rdfs:subClassOf ns1:operation_3218, + ns1:operation_3921 . -:operation_3221 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3174 ], - :operation_2478 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3174 ], + ns1:operation_2478 . -:operation_3222 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data." ; + ns2:hasExactSynonym "Protein binding peak detection" ; + ns2:hasNarrowSynonym "Peak-pair calling" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0415 . -:operation_3224 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2436 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:operation_2495 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2436 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3225 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2995, + ns1:operation_3197 . -:operation_3226 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3229 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0310 . - -:operation_3230 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome." ; + ns2:hasExactSynonym "Exome sequence analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0310 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3921 . + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3921 . -:operation_3232 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Gene expression QTL profiling", "Gene expression quantitative trait loci profiling", "eQTL profiling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495 . -:operation_3233 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Transcript copy number estimation" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3961 . -:operation_3237 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0369 . - -:operation_3258 a owl:Class ; + ns1:created_in "1.2" ; + ns2:hasBroadSynonym "Adapter removal" ; + ns2:hasDefinition "Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0369 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.2" ; + ns2:hasDefinition "Infer a transcriptome sequence by analysis of short sequence reads." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0925 ], - :operation_0310 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0925 ], + ns1:operation_0310 . -:operation_3259 a owl:Class ; +ns1:operation_3259 a owl:Class ; rdfs:label "Transcriptome assembly (de novo)" ; - :created_in "1.2" ; - :obsolete_since "1.6" ; - 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:hasExactSynonym "de novo transcriptome assembly" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.2" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0524 ; + ns2:hasDefinition "Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other." ; + ns2:hasExactSynonym "de novo transcriptome assembly" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3260 a owl:Class ; +ns1:operation_3260 a owl:Class ; rdfs:label "Transcriptome assembly (mapping)" ; - :created_in "1.2" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0523 ; - oboInOwl:hasDefinition "Infer a transcriptome sequence by mapping short reads to a reference genome." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.2" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0523 ; + ns2:hasDefinition "Infer a transcriptome sequence by mapping short reads to a reference genome." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3267 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.3" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2012 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2012 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2012 ], - :operation_3434 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2012 ], + ns1:operation_3434 . -:operation_3278 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3437 . + ns1:created_in "1.3" ; + ns2:hasDefinition "Calculate similarity between 2 or more documents." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3437 . -:operation_3279 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Cluster (group) documents on the basis of their calculated similarity." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3432, - :operation_3437 . + rdfs:subClassOf ns1:operation_3432, + ns1:operation_3437 . -:operation_3280 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents." ; + ns2:hasNarrowSynonym "Concept mining", "Entity chunking", "Entity extraction", "Entity identification", "Event extraction", "NER", "Named-entity recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso , ; - rdfs:subClassOf :operation_3907 . + rdfs:subClassOf ns1:operation_3907 . -:operation_3282 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration." ; + ns2:hasExactSynonym "Accession mapping", "Identifier mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2424, + ns1:operation_2429 . -:operation_3283 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . - -:operation_3289 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Process data in such a way that makes it hard to trace to the person which the data concerns." ; + ns2:hasExactSynonym "Data anonymisation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2422 ; + ns1:created_in "1.3" ; + ns1:deprecation_comment "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0304 ; + ns2:hasDefinition "Search for and retrieve a data identifier of some kind, e.g. a database entry accession." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2422 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3348 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Generate a checksum of a molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3077 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3077 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2044 ], - :operation_3429 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2044 ], + ns1:operation_3429 . -:operation_3349 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Construct a bibliography from the scientific literature." ; + ns2:hasExactSynonym "Bibliography construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3505 ], - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3505 ], + ns1:operation_3429 . -:operation_3350 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2423 . + ns1:created_in "1.4" ; + ns2:hasDefinition "Predict the structure of a multi-subunit protein and particularly how the subunits fit together." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2423 . -:operation_3353 a owl:Class ; +ns1:operation_3353 a owl:Class ; rdfs:label "Ontology comparison" ; - :created_in "1.4" ; - :obsolete_since "1.9" ; - oboInOwl:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3352 ; + ns1:created_in "1.4" ; + ns1:obsolete_since "1.9" ; + ns2:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3352 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3359 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . - -:operation_3430 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Split a file containing multiple data items into many files, each containing one item" ; + ns2:hasExactSynonym "File splitting" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0415 ; + ns1:created_in "1.6" ; + ns1: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." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0253, + ns1:operation_0415 ; + ns2:hasDefinition "Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0415 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3433 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0310 ; + ns1:created_in "1.6" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0004 ; + ns2:hasDefinition "Construct some entity (typically a molecule sequence) from component pieces." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0310 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3436 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns1:created_in "1.6" ; + ns2:hasDefinition "Combine multiple files or data items into a single file or object." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3439 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "1.6" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2497 ; + ns2:consider ns1:operation_2437, + ns1:operation_3094, + ns1:operation_3929 ; + ns2:hasDefinition "Predict a molecular pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_3440 a owl:Class ; +ns1:operation_3440 a owl:Class ; rdfs:label "Genome assembly" ; - :created_in "1.6" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0525 ; + ns1:created_in "1.6" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0525 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3441 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0337 ; + ns1:created_in "1.6" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0337 ; + ns2:hasDefinition "Generate a graph, or other visual representation, of data, showing the relationship between two or more variables." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0337 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3446 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2229 ], - :operation_3443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2229 ], + ns1:operation_3443 . -:operation_3447 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3445 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Processing of diffraction data into a corrected, ordered, and simplified form." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3445 . -:operation_3450 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2229 ], - :operation_3443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2229 ], + ns1:operation_3443 . -:operation_3453 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment." ; + ns2:hasNarrowSynonym "Diffraction profile fitting", "Diffraction summation integration" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3445 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3445 . -:operation_3454 a owl:Class ; +ns1: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 edam:data, - edam:operations ; - rdfs:subClassOf :operation_3445 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods." ; + ns2:inSubset ns4:data, + ns4:operations ; + rdfs:subClassOf ns1:operation_3445 . -:operation_3455 a owl:Class ; +ns1: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 edam:data, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:operations ; rdfs:comment "The technique solves the phase problem, i.e. retrieve information concern phases of the structure." ; - rdfs:subClassOf :operation_0322 . + rdfs:subClassOf ns1:operation_0322 . -:operation_3456 a owl:Class ; +ns1: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 edam:data, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:operations ; rdfs:comment "Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data." ; - rdfs:subClassOf :operation_0322 . + rdfs:subClassOf ns1:operation_0322 . -:operation_3458 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns1:is_refactor_candidate "true" ; + ns1:refactor_comment "This is two related concepts." ; + ns2:hasDefinition "Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2990, + ns1:operation_3457 . -:operation_3459 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:hasExactSynonym "Functional sequence clustering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_0291 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_0291 . -:operation_3460 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2995 . - -:operation_3461 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy." ; + ns2:hasExactSynonym "Taxonomy assignment" ; + ns2:hasNarrowSynonym "Taxonomic profiling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2995 . + +ns1: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 edam:data, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3301 ], - :operation_2403, - :operation_2423 . - -:operation_3463 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences." ; + ns2:hasExactSynonym "Pathogenicity prediction" ; + ns2:inSubset ns4:data, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3301 ], + ns1:operation_2403, + ns1:operation_2423 . + +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc." ; + ns2:hasExactSynonym "Co-expression analysis" ; + ns2:hasNarrowSynonym "Gene co-expression network analysis", "Gene expression correlation", "Gene expression correlation analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0315, - :operation_3465 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0315, + ns1:operation_3465 . -:operation_3469 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Compute the covariance model for (a family of) RNA secondary structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :operation_2439, - :operation_3429 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:operation_2439, + ns1:operation_3429 . -:operation_3470 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0278 ; + ns1:created_in "1.7" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0278 ; + ns2:hasDefinition "Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0278 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3471 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0279 ; + ns1:created_in "1.7" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0279 ; + ns2:hasDefinition "Prediction of nucleic-acid folding using sequence alignments as a source of data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0279 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3472 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Count k-mers (substrings of length k) in DNA sequence data." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:operation_0236 . -:operation_3478 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Reconstructing the inner node labels of a phylogenetic tree from its leafes." ; + ns2:hasExactSynonym "Phylogenetic tree reconstruction" ; + ns2:hasNarrowSynonym "Gene tree reconstruction", "Species tree reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:operation_0323 . -:operation_3481 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0230, - :operation_3480 . - -:operation_3482 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Generate sequences from some probabilistic model, e.g. a model that simulates evolution." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0230, + ns1:operation_3480 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Identify or predict causes for antibiotic resistance from molecular sequence analysis." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3301 ], - :operation_2403, - :operation_2423 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3301 ], + ns1:operation_2403, + ns1:operation_2423 . -:operation_3502 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information." ; + ns2:hasExactSynonym "Chemical class enrichment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_3501 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_3501 . -:operation_3503 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns1:created_in "1.8" ; + ns2:hasDefinition "Plot an incident curve such as a survival curve, death curve, mortality curve." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_3504 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Identify and map patterns of genomic variations." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods often utilise a database of aligned reads." ; - rdfs:subClassOf :operation_3197 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3545 a owl:Class ; +ns1:operation_3545 a owl:Class ; rdfs:label "Mathematical modelling" ; - :created_in "1.8" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2426 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2426 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3552 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.9" ; + ns2:hasDefinition "Visualise images resulting from various types of microscopy." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3382 ], - :operation_0337 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3382 ], + ns1:operation_0337 . -:operation_3553 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0226 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Annotate an image of some sort, typically with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0226 . -:operation_3557 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.9" ; + ns2:hasDefinition "Replace missing data with substituted values, usually by using some statistical or other mathematical approach." ; + ns2:hasExactSynonym "Data imputation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3559 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . - -:operation_3560 a owl:Class ; + ns1:created_in "1.9" ; + ns2:hasDefinition "Visualise, format or render data from an ontology, typically a tree of terms." ; + ns2:hasExactSynonym "Ontology browsing" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . + +ns1:operation_3560 a owl:Class ; rdfs:label "Maximum occurence 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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0321 . + ns1:created_in "1.9" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0321 . -:operation_3561 a owl:Class ; +ns1: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", + ns1:created_in "1.9" ; + ns2: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." ; + ns2:hasNarrowSynonym "Data model comparison", "Schema comparison" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424, - :operation_2429 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424, + ns1:operation_2429 . -:operation_3562 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "1.9" ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2426 ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Simulate the bevaviour of a biological pathway or network." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3680 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Analyze read counts from RNA-seq experiments." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3680 . -:operation_3564 a owl:Class ; +ns1:operation_3564 a owl:Class ; rdfs:label "Chemical redundancy removal" ; - :created_in "1.9" ; - oboInOwl:hasDefinition "Identify and remove redudancy from a set of small molecule structures." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2483 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Identify and remove redudancy from a set of small molecule structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2483 . -:operation_3565 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3680 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Analyze time series data from an RNA-seq experiment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3680 . -:operation_3566 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2426 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Simulate gene expression data, e.g. for purposes of benchmarking." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2426 . -:operation_3625 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Identify semantic relations among entities and concepts within a text, using text mining techniques." ; + ns2:hasExactSynonym "Relation discovery", "Relation inference", "Relationship discovery", "Relationship extraction", "Relationship inference" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0306 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0306 . -:operation_3627 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Re-adjust the output of mass spectrometry experiments with shifted ppm values." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3628 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3629 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point." ; + ns2:hasExactSynonym "Deconvolution" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3632 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Calculate the isotope distribution of a given chemical species." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3438 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3438 . -:operation_3633 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3438 . - -:operation_3636 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species." ; + ns2:hasExactSynonym "Retention time calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3438 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3630 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3630 . -:operation_3637 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3634 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Calculate number of identified MS2 spectra as approximation of peptide / protein quantity." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3634 . -:operation_3638 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using stable isotope labeling by amino acids in cell culture." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3639 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3640 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using labeling based on 18O-enriched H2O." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3641 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3642 a owl:Class ; +ns1:operation_3642 a owl:Class ; rdfs:label "Dimethyl" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Quantification analysis using chemical labeling by stable isotope dimethylation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using chemical labeling by stable isotope dimethylation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3643 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3631 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3631 . -:operation_3644 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0230, - :operation_3631 . - -:operation_3647 a owl:Class ; + ns1:created_in "1.12" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0230, + ns1:operation_3631 . + +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches." ; + ns2:hasExactSynonym "Modification-tolerant peptide database search", "Unrestricted peptide database search" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3646 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3646 . -:operation_3648 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3649 ; + ns1:created_in "1.12" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2428, + ns1:operation_3646 ; + ns2:hasDefinition "Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3649 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3658 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Analyse data in order to deduce properties of an underlying distribution or population." ; + ns2:hasNarrowSynonym "Empirical Bayes" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3659 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "A statistical calculation to estimate the relationships among variables." ; + ns2:hasNarrowSynonym "Regression" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3660 a owl:Class ; +ns1: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, + ns1:created_in "1.12" ; + ns2: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." ; + ns2:hasExactSynonym ns1:Metabolic%20pathway%20modelling ; + ns2:hasNarrowSynonym ns1:Metabolic%20pathway%20reconstruction, "Metabolic network reconstruction", "Metabolic network simulation", "Metabolic pathway simulation", "Metabolic reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2259 ], + ns1:operation_3927, + ns1:operation_3928 . -:operation_3661 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0361 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Predict the effect or function of an individual single nucleotide polymorphism (SNP)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0361 . -:operation_3662 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Prediction of genes or gene components from first principles, i.e. without reference to existing genes." ; + ns2:hasExactSynonym "Gene prediction (ab-initio)" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2454 . + rdfs:subClassOf ns1:operation_2454 . -:operation_3663 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Prediction of genes or gene components by reference to homologous genes." ; + ns2:hasExactSynonym "Empirical gene finding", "Empirical gene prediction", "Evidence-based gene prediction", "Gene prediction (homology-based)", "Similarity-based gene prediction" ; - oboInOwl:hasNarrowSynonym "Homology prediction", + ns2:hasNarrowSynonym "Homology prediction", "Orthology prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2454 . + rdfs:subClassOf ns1:operation_2454 . -:operation_3664 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3666 a owl:Class ; +ns1:operation_3666 a owl:Class ; rdfs:label "Molecular surface comparison" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Compare two or more molecular surfaces." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2483, - :operation_3351 . - -:operation_3672 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Compare two or more molecular surfaces." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2483, + ns1:operation_3351 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0361 . - -:operation_3675 a owl:Class ; + ns1:created_in "1.12" ; + ns2: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)." ; + ns2:hasExactSynonym "Sequence functional annotation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0361 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3218 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3218 . -:operation_3677 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_3694 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns1:created_in "1.13" ; + ns2:hasDefinition "Visualise, format or render a mass spectrum." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_3695 a owl:Class ; +ns1: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", + ns1:created_in "1.13" ; + ns2:hasDefinition "Filter a set of files or data items according to some property." ; + ns2:hasNarrowSynonym "Sequence filtering", "rRNA filtering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3703 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3197 . + ns1:created_in "1.14" ; + ns2:hasDefinition "Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3197 . -:operation_3704 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3634 . - -:operation_3705 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Label-free quantification by integration of ion current (ion counting)." ; + ns2:hasExactSynonym "Ion current integration" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3634 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . - -:operation_3715 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Chemical tagging free amino groups of intact proteins with stable isotopes." ; + ns2:hasExactSynonym "ICPL" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . + +ns1: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", + ns1:created_in "1.14" ; + ns2:hasDefinition "Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed." ; + ns2:hasNarrowSynonym "C-13 metabolic labeling", "N-15 metabolic labeling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3635 . -:operation_3730 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0310 . - -:operation_3731 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasDefinition "Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis." ; + ns2:hasExactSynonym "Sequence assembly (cross-assembly)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0310 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "1.15" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3741 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0314, - :operation_2997 . - -:operation_3742 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasBroadSynonym "Differential protein analysis" ; + ns2:hasDefinition "The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup." ; + ns2:hasExactSynonym "Differential protein expression analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0314, + ns1:operation_2997 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3223 ; + ns1:created_in "1.15" ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_2424 ; + ns2:hasDefinition "The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3223 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3744 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns1:created_in "1.15" ; + ns2:hasDefinition "Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_3745 a owl:Class ; +ns1: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", + ns1:created_in "1.15" ; + ns2:hasDefinition "The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors." ; + ns2:hasExactSynonym "Ancestral sequence reconstruction", "Character mapping", "Character optimisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms." ; - rdfs:subClassOf :operation_0324 . + rdfs:subClassOf ns1:operation_0324 . -:operation_3755 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "Site localisation of post-translational modifications in peptide or protein mass spectra." ; + ns2:hasExactSynonym "PTM scoring", "Site localisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3645 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3645 . -:operation_3761 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3760 . + ns1:created_in "1.16" ; + ns2:hasDefinition "An operation supporting the browsing or discovery of other tools and services." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3760 . -:operation_3762 a owl:Class ; +ns1: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 funtional unit, for the automation of some task." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3760 . + ns1:created_in "1.16" ; + ns2:hasDefinition "An operation supporting the aggregation of other services (at least two) into a funtional unit, for the automation of some task." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3760 . -:operation_3763 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3760 . + ns1:created_in "1.16" ; + ns2:hasDefinition "An operation supporting the calling (invocation) of other tools and services." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3760 . -:operation_3766 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "A data mining method typically used for studying biological networks based on pairwise correlations between variables." ; + ns2:hasExactSynonym "WGCNA", "Weighted gene co-expression network analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_3927 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:operation_3927 . -:operation_3767 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_2423, - :operation_3214 . - -:operation_3791 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry." ; + ns2:hasExactSynonym "Protein inference" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_2423, + ns1:operation_3214 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.17" ; + ns2:hasDefinition "A method whereby data on several variants are \"collapsed\" into a single covariate based on regions such as genes." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3792 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495 . - -:operation_3793 a owl:Class ; + ns1:created_in "1.17" ; + ns2:hasBroadSynonym "miRNA analysis" ; + ns2:hasDefinition "The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes." ; + ns2:hasExactSynonym "miRNA expression profiling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3921 . + ns1:created_in "1.17" ; + ns2:hasDefinition "Counting and summarising the number of short sequence reads that map to genomic features." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3921 . -:operation_3795 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3095 . + ns1:created_in "1.17" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3095 . -:operation_3797 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.17" ; + ns2: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)." ; + ns2:hasExactSynonym "Species richness assessment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3438 . + rdfs:subClassOf ns1:operation_3438 . -:operation_3798 a owl:Class ; +ns1: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", + ns1:created_in "1.17" ; + ns2:hasDefinition "An operation which groups reads or contigs and assigns them to operational taxonomic units." ; + ns2:hasExactSynonym "Binning", "Binning shotgun reads" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Binning methods use one or a combination of compositional features or sequence similarity." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3921 . + rdfs:subClassOf ns1:operation_3921 . -:operation_3800 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3799 . - -:operation_3801 a owl:Class ; + ns1:created_in "1.17" ; + ns2: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." ; + ns2:hasExactSynonym "RNA-Seq quantitation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3799 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.17" ; + ns2:hasDefinition "Match experimentally measured mass spectrum to a spectrum in a spectral library or database." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3631 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3631 . -:operation_3802 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns1:created_in "1.17" ; + ns2:hasDefinition "Sort a set of files or data items according to some property." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3803 a owl:Class ; +ns1:operation_3803 a owl:Class ; rdfs:label "Natural product identification" ; - :created_in "1.17" ; - oboInOwl:hasBroadSynonym "Metabolite identification" ; - 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", + ns1:created_in "1.17" ; + ns2:hasBroadSynonym "Metabolite identification" ; + ns2:hasDefinition "Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics." ; + ns2:hasNarrowSynonym "De novo metabolite identification", "Fragmenation tree generation", "Metabolite identification" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3214 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3214 . -:operation_3809 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204 . - -:operation_3840 a owl:Class ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Identify and assess specific genes or regulatory regions of interest that are differentially methylated." ; + ns2:hasExactSynonym "Differentially-methylated region identification" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204 . + +ns1:operation_3840 a owl:Class ; rdfs:label "Multilocus sequence typing" ; - :created_in "1.21" ; - oboInOwl:hasDbXref oboOther:OBI_0000435, + ns1:created_in "1.21" ; + ns2:hasDbXref ns3: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 edam:edam, - edam:operations ; + ns2:hasDefinition "Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes." ; + ns2:hasExactSynonym "MLST" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3196 . + rdfs:subClassOf ns1:operation_3196 . -:operation_3860 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_0250, - :operation_3214 . - -:operation_3890 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Calculate a theoretical mass spectrometry spectra for given sequences." ; + ns2:hasExactSynonym "Spectrum prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_0250, + ns1:operation_3214 . + +ns1:operation_3890 a owl:Class ; rdfs:label "Trajectory visualization" ; - :created_in "1.22" ; - oboInOwl:hasDefinition "3D visualization of a molecular trajectory." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "3D visualization of a molecular trajectory." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2162 ], - :operation_0570 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2162 ], + ns1:operation_0570 . -:operation_3891 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2: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." ; + ns2:hasExactSynonym "ED", "PCA", "Principal modes" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0244, + ns1:operation_2481 . -:operation_3893 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations" ; + ns2:hasExactSynonym "Ligand parameterization", "Molecule parameterization" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1439 ], - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1439 ], + ns1:operation_2426 . -:operation_3894 a owl:Class ; +ns1: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" ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on." ; + ns2:hasExactSynonym "DNA fingerprinting" ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2478 . + rdfs:subClassOf ns1:operation_2478 . -:operation_3896 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction." ; + ns2:hasNarrowSynonym "Active site detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2575 . + rdfs:subClassOf ns1:operation_2575 . -:operation_3897 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2: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." ; + ns2:hasNarrowSynonym "Ligand-binding site detection", "Peptide-protein binding prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2575 . + rdfs:subClassOf ns1:operation_2575 . -:operation_3898 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict or detect metal ion-binding sites in proteins." ; + ns2:hasExactSynonym "Metal-binding site detection", "Protein metal-binding site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2575 . + rdfs:subClassOf ns1:operation_2575 . -:operation_3899 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + ns1:created_in "1.22" ; + ns2:hasDefinition "Model or simulate protein-protein binding using comparative modelling or other techniques." ; + ns2:hasExactSynonym "Protein docking" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1461 ], - :operation_0478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_0478 . -:operation_3900 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict DNA-binding proteins." ; + ns2:hasExactSynonym "DNA-binding protein detection", "DNA-protein interaction prediction", "Protein-DNA interaction prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], - :operation_0389 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_0389 . -:operation_3901 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict RNA-binding proteins." ; + ns2:hasExactSynonym "Protein-RNA interaction prediction", "RNA-binding protein detection", "RNA-protein interaction prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_0389 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_0389 . -:operation_3902 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict or detect RNA-binding sites in protein sequences." ; + ns2:hasExactSynonym "Protein-RNA binding site detection", "Protein-RNA binding site prediction", "RNA binding site detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0420 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0420 . -:operation_3903 a owl:Class ; +ns1:operation_3903 a owl:Class ; rdfs:label "DNA binding site prediction" ; - :created_in "1.22" ; - edam:edam "" ; - oboInOwl:hasDefinition "Predict or detect DNA-binding sites in protein sequences." ; - oboInOwl:hasExactSynonym "Protein-DNA binding site detection", + ns1:created_in "1.22" ; + ns4:edam "" ; + ns2:hasDefinition "Predict or detect DNA-binding sites in protein sequences." ; + ns2:hasExactSynonym "Protein-DNA binding site detection", "Protein-DNA binding site prediction" ; - oboInOwl:hasNarrowSynonym "DNA binding site detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0420 . + ns2:hasNarrowSynonym "DNA binding site detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0420 . -:operation_3904 a owl:Class ; +ns1: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:hasExactSynonym "" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Identify or predict intrinsically disordered regions in proteins." ; + ns2:hasExactSynonym "" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3301 ], - :operation_2423, - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3301 ], + ns1:operation_2423, + ns1:operation_3092 . -:operation_3919 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204 . + ns1:created_in "1.24" ; + ns2:hasDefinition "The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204 . -:operation_3920 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Genetic testing" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0622 ], + ns1:operation_2478 . -:operation_3923 a owl:Class ; +ns1:operation_3923 a owl:Class ; rdfs:label "Genome resequencing" ; - :created_in "1.24" ; - 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). + ns1:created_in "1.24" ; + ns2: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.). ows re-sequencing of complete genomes of any given organism with high resolution and high accuracy.""" ; - oboInOwl:hasExactSynonym "Resequencing" ; - oboInOwl:hasHumanReadableId "Whole_genome_sequencing" ; - oboInOwl:hasNarrowSynonym "Amplicon panels", + ns2:hasExactSynonym "Resequencing" ; + ns2:hasHumanReadableId "Whole_genome_sequencing" ; + ns2:hasNarrowSynonym "Amplicon panels", "Amplicon sequencing", "Amplicon-based sequencing", "Highly targeted resequencing", @@ -23431,1530 +23428,1530 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Whole genome resequencing" ; 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.", "Ultra-deep sequencing" ; - rdfs:subClassOf :topic_3168 . + rdfs:subClassOf ns1:topic_3168 . -:operation_3931 a owl:Class ; +ns1:operation_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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science." ; + ns2:hasHumanReadableId "Chemometrics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_2258 . + rdfs:subClassOf ns1:topic_2258 . -:operation_3933 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Assigning sequence reads to separate groups / files based on their index tag (sample origin)." ; + ns2:hasExactSynonym "Sequence demultiplexing" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3921 . -:operation_3936 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction." ; + ns2:hasExactSynonym "Attribute selection", "Variable selection", "Variable subset selection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3935 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3935 . -:operation_3937 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Feature projection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3935 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3935 . -:operation_3938 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Ligand-based screening", "Ligand-based virtual screening", "Structure-based screening", "Structured-based virtual screening", "Virtual ligand screening" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1461 ], - :operation_0482, - :operation_4009 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_0482, + ns1:operation_4009 . -:operation_3939 a owl:Class ; +ns1:operation_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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance." ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3297 . + rdfs:subClassOf ns1:topic_3297 . -:operation_3942 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "The application of phylogenetic and other methods to estimate paleogeographical events such as speciation." ; + ns2:hasExactSynonym "Biogeographic dating", "Speciation dating", "Species tree dating", "Tree-dating" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0324 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0324 . -:operation_3946 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1439 ], - :operation_0286, - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1439 ], + ns1:operation_0286, + ns1:operation_2426 . -:operation_3947 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Gene tree / species tree reconciliation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods typically test for topological similarity between trees using for example a congruence index." ; - rdfs:subClassOf :operation_0325 . + rdfs:subClassOf ns1:operation_0325 . -:operation_3950 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . + ns1:created_in "1.24" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . -:operation_3960 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.25" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3962 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify deletion events causing the number of repeats in the genome to vary between individuals." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3963 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify duplication events causing the number of repeats in the genome to vary between individuals." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3964 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3965 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify amplification events causing the number of repeats in the genome to vary between individuals." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3968 a owl:Class ; +ns1:operation_3968 a owl:Class ; rdfs:label "Adhesin prediction" ; - :created_in "1.25" ; - oboInOwl:hasDefinition "Predict adhesins in protein sequences." ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "1.25" ; + ns2:hasDefinition "Predict adhesins in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:topics ; 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 targetted 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], + ns1:operation_2429, + ns1:operation_3092 . -:operation_4008 a owl:Class ; +ns1: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", + ns1:created_in 1.25 ; + ns2:hasDefinition "Design new protein molecules with specific structural or functional properties." ; + ns2:hasNarrowSynonym "Protein redesign", "Rational protein design", "de novo protein design" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2430 . + rdfs:subClassOf ns1:operation_2430 . -:organisation a owl:AnnotationProperty ; +ns1:organisation a owl:AnnotationProperty ; rdfs:label "Organisation" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Organization" ; + ns2:inSubset "concept_properties" . -:refactor_comment a owl:AnnotationProperty ; +ns1:refactor_comment a owl:AnnotationProperty ; rdfs:label "refactor_comment" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.)" ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.)" ; + ns2:inSubset "concept_properties" . -:regex a owl:AnnotationProperty ; +ns1:regex a owl:AnnotationProperty ; rdfs:label "Regular expression" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_properties" . -:repository a owl:AnnotationProperty ; +ns1:repository a owl:AnnotationProperty ; rdfs:label "Repository" ; - oboOther: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", + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Public repository", "Source-code repository" ; - oboInOwl:inSubset "concept_properties" . + ns2:inSubset "concept_properties" . -:thematic_editor a owl:AnnotationProperty ; +ns1:thematic_editor a owl:AnnotationProperty ; rdfs:label "thematic_editor" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children." ; + ns2:inSubset "concept_properties" . -:topic_0079 a owl:Class ; +ns1:topic_0079 a owl:Class ; rdfs:label "Metabolites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0083 a owl:Class ; +ns1:topic_0083 a owl:Class ; rdfs:label "Alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0080, + ns1:topic_0081 ; + ns2:hasDefinition "The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0085 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc." ; + ns2:hasHumanReadableId "Functional_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622, - :topic_1775 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_1775 . -:topic_0090 a owl:Class ; +ns1:topic_0090 a owl:Class ; rdfs:label "Information retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3071 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3071 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0094 a owl:Class ; +ns1:topic_0094 a owl:Class ; rdfs:label "Nucleic acid thermodynamics" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "The study of the thermodynamic properties of a nucleic acid." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "The study of the thermodynamic properties of a nucleic acid." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0100 a owl:Class ; +ns1:topic_0100 a owl:Class ; rdfs:label "Nucleic acid restriction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0821 ; - oboInOwl:hasDefinition "Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0821 ; + ns2:hasDefinition "Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0107 a owl:Class ; +ns1:topic_0107 a owl:Class ; rdfs:label "Genetic codes and codon usage" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "The study of codon usage in nucleotide sequence(s), genetic codes and so on." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "The study of codon usage in nucleotide sequence(s), genetic codes and so on." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0109 a owl:Class ; +ns1:topic_0109 a owl:Class ; rdfs:label "Gene finding" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0114 ; - oboInOwl:hasDefinition "Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0114 ; + ns2:hasDefinition "Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences." ; + ns2:inSubset ns4: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 ; +ns1:topic_0110 a owl:Class ; rdfs:label "Transcription" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "The transcription of DNA into mRNA." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "The transcription of DNA into mRNA." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0111 a owl:Class ; +ns1:topic_0111 a owl:Class ; rdfs:label "Promoters" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0749 ; + ns2:hasDefinition "Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0112 a owl:Class ; +ns1:topic_0112 a owl:Class ; rdfs:label "Nucleic acid folding" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "The folding (in 3D space) of nucleic acid molecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0097 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "The folding (in 3D space) of nucleic acid molecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0097 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0122 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The elucidation of the three dimensional structure for all (available) proteins in a given organism." ; + ns2:hasHumanReadableId "Structural_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622, - :topic_1317 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_1317 . -:topic_0133 a owl:Class ; +ns1:topic_0133 a owl:Class ; rdfs:label "Two-dimensional gel electrophoresis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Two-dimensional gel electrophoresis image and related data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Two-dimensional gel electrophoresis image and related data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0134 a owl:Class ; +ns1:topic_0134 a owl:Class ; rdfs:label "Mass spectrometry" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3520 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3520 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0135 a owl:Class ; +ns1:topic_0135 a owl:Class ; rdfs:label "Protein microarrays" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Protein microarray data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Protein microarray data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0137 a owl:Class ; +ns1:topic_0137 a owl:Class ; rdfs:label "Protein hydropathy" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0123 ; - oboInOwl:hasDefinition "The study of the hydrophobic, hydrophilic and charge properties of a protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0123 ; + ns2:hasDefinition "The study of the hydrophobic, hydrophilic and charge properties of a protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0141 a owl:Class ; +ns1:topic_0141 a owl:Class ; rdfs:label "Protein cleavage sites and proteolysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0143 a owl:Class ; +ns1:topic_0143 a owl:Class ; rdfs:label "Protein structure comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "The comparison of two or more protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0081 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "The comparison of two or more protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0144 a owl:Class ; rdfs:label "Protein residue interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0130 ; - oboInOwl:hasDefinition "The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0130 ; + ns2:hasDefinition "The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0147 a owl:Class ; +ns1:topic_0147 a owl:Class ; rdfs:label "Protein-protein interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0148 a owl:Class ; +ns1:topic_0148 a owl:Class ; rdfs:label "Protein-ligand interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein-ligand (small molecule) interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein-ligand (small molecule) interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0149 a owl:Class ; +ns1:topic_0149 a owl:Class ; rdfs:label "Protein-nucleic acid interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein-DNA/RNA interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein-DNA/RNA interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0150 a owl:Class ; +ns1:topic_0150 a owl:Class ; rdfs:label "Protein design" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0130 ; + ns2:hasDefinition "The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0151 a owl:Class ; +ns1:topic_0151 a owl:Class ; rdfs:label "G protein-coupled receptors (GPCR)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0820 ; - oboInOwl:hasDefinition "G-protein coupled receptors (GPCRs)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0820 ; + ns2:hasDefinition "G-protein coupled receptors (GPCRs)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0156 a owl:Class ; +ns1:topic_0156 a owl:Class ; rdfs:label "Sequence editing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0080, - :topic_0091 ; - oboInOwl:hasDefinition "Edit, convert or otherwise change a molecular sequence, either randomly or specifically." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0080, + ns1:topic_0091 ; + ns2:hasDefinition "Edit, convert or otherwise change a molecular sequence, either randomly or specifically." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0158 a owl:Class ; +ns1:topic_0158 a owl:Class ; rdfs:label "Sequence motifs" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites." ; - oboInOwl:hasExactSynonym "Motifs" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites." ; + ns2:hasExactSynonym "Motifs" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0159 a owl:Class ; +ns1:topic_0159 a owl:Class ; rdfs:label "Sequence comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The comparison of two or more molecular sequences, for example sequence alignment and clustering." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The comparison of two or more molecular sequences, for example sequence alignment and clustering." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0163 a owl:Class ; rdfs:label "Sequence database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence)." ; + ns2:inSubset ns4: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 ; +ns1:topic_0164 a owl:Class ; rdfs:label "Sequence clustering" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "The comparison and grouping together of molecular sequences on the basis of their similarities." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "The comparison and grouping together of molecular sequences on the basis of their similarities." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0167 a owl:Class ; rdfs:label "Structural (3D) profiles" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0081 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0172 a owl:Class ; +ns1:topic_0172 a owl:Class ; rdfs:label "Protein structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0173 a owl:Class ; +ns1:topic_0173 a owl:Class ; rdfs:label "Nucleic acid structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0097 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0097 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0174 a owl:Class ; +ns1:topic_0174 a owl:Class ; rdfs:label "Ab initio structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0175 a owl:Class ; +ns1:topic_0175 a owl:Class ; rdfs:label "Homology modelling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :topic_2275 ; - oboInOwl:hasDefinition "The modelling of the three-dimensional structure of a protein using known sequence and structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:topic_2275 ; + ns2:hasDefinition "The modelling of the three-dimensional structure of a protein using known sequence and structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0177 a owl:Class ; +ns1:topic_0177 a owl:Class ; rdfs:label "Molecular docking" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The modelling the structure of proteins in complex with small molecules or other macromolecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2275 ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The modelling the structure of proteins in complex with small molecules or other macromolecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2275 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0178 a owl:Class ; +ns1:topic_0178 a owl:Class ; rdfs:label "Protein secondary structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The prediction of secondary or supersecondary structure of protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The prediction of secondary or supersecondary structure of protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0179 a owl:Class ; +ns1:topic_0179 a owl:Class ; rdfs:label "Protein tertiary structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The prediction of tertiary structure of protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The prediction of tertiary structure of protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0180 a owl:Class ; +ns1:topic_0180 a owl:Class ; rdfs:label "Protein fold recognition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0182 a owl:Class ; +ns1:topic_0182 a owl:Class ; rdfs:label "Sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "The alignment of molecular sequences or sequence profiles (representing sequence alignments)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "The alignment of molecular sequences or sequence profiles (representing sequence alignments)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0183 a owl:Class ; rdfs:label "Structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0081 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0184 a owl:Class ; rdfs:label "Threading" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0188 a owl:Class ; +ns1:topic_0188 a owl:Class ; rdfs:label "Sequence profiles and HMMs" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "Sequence profiles; typically a positional, numerical matrix representing a sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "Sequence profiles; typically a positional, numerical matrix representing a sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:topic_0191 a owl:Class ; rdfs:label "Phylogeny reconstruction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3293 ; - oboInOwl:hasDefinition "The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3293 ; + ns2:hasDefinition "The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree." ; + ns2:inSubset ns4: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 ; +ns1:topic_0195 a owl:Class ; rdfs:label "Virtual PCR" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0077 ; - oboInOwl:hasDefinition "Simulated polymerase chain reaction (PCR)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0077 ; + ns2:hasDefinition "Simulated polymerase chain reaction (PCR)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0200 a owl:Class ; +ns1:topic_0200 a owl:Class ; rdfs:label "Microarrays" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "Microarrays, for example, to process microarray data or design probes and experiments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "Microarrays, for example, to process microarray data or design probes and experiments." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D046228" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0204 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The regulation of gene expression." ; + ns2:hasNarrowSynonym "Regulatory genomics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0203 . + rdfs:subClassOf ns1:topic_0203 . -:topic_0208 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." ; + ns2:hasHumanReadableId "Pharmacogenomics" ; + ns2:hasNarrowSynonym "Pharmacogenetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0202, - :topic_0622 . + rdfs:subClassOf ns1:topic_0202, + ns1:topic_0622 . -:topic_0209 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.4 Medicinal chemistry" ; + ns2:hasDefinition "The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes." ; + ns2:hasExactSynonym "Drug design" ; + ns2:hasHumanReadableId "Medicinal_chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3336, + ns1:topic_3371 . -:topic_0210 a owl:Class ; +ns1:topic_0210 a owl:Class ; rdfs:label "Fish" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Information on a specific fish genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific fish genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0211 a owl:Class ; +ns1:topic_0211 a owl:Class ; rdfs:label "Flies" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Information on a specific fly genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific fly genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0213 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_2820 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific mouse or rat genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_0215 a owl:Class ; rdfs:label "Worms" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Information on a specific worm genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific worm genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0217 a owl:Class ; +ns1:topic_0217 a owl:Class ; rdfs:label "Literature analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0218 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0218 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0220 a owl:Class ; +ns1:topic_0220 a owl:Class ; rdfs:label "Document, record and content management" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The management and manipulation of digital documents, including database records, files and reports." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3489 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The management and manipulation of digital documents, including database records, files and reports." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3489 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0221 a owl:Class ; +ns1:topic_0221 a owl:Class ; rdfs:label "Sequence annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0219 ; - oboInOwl:hasDefinition "Annotation of a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0219 ; + ns2:hasDefinition "Annotation of a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0222 a owl:Class ; +ns1:topic_0222 a owl:Class ; rdfs:label "Genome annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0219, - :topic_0621, - :topic_0622 ; - oboInOwl:hasDefinition "Annotation of a genome." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0219, + ns1:topic_0621, + ns1:topic_0622 ; + ns2:hasDefinition "Annotation of a genome." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0593 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Spectroscopy" ; + ns2: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." ; + ns2:hasExactSynonym "NMR spectroscopy", "Nuclear magnetic resonance spectroscopy" ; - oboInOwl:hasHumanReadableId "NMR" ; - oboInOwl:hasNarrowSynonym "HOESY", + ns2:hasHumanReadableId "NMR" ; + ns2:hasNarrowSynonym "HOESY", "Heteronuclear Overhauser Effect Spectroscopy", "NOESY", "Nuclear Overhauser Effect Spectroscopy", "ROESY", "Rotational Frame Nuclear Overhauser Effect Spectroscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_0594 a owl:Class ; +ns1:topic_0594 a owl:Class ; rdfs:label "Sequence classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The classification of molecular sequences based on some measure of their similarity." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The classification of molecular sequences based on some measure of their similarity." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0595 a owl:Class ; rdfs:label "Protein classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0623 ; - oboInOwl:hasDefinition "primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0598 a owl:Class ; +ns1:topic_0598 a owl:Class ; rdfs:label "Sequence motif or profile" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "This includes comparison, discovery, recognition etc. of sequence motifs." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0606 a owl:Class ; +ns1:topic_0606 a owl:Class ; rdfs:label "Literature data resources" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Data resources for the biological or biomedical literature, either a primary source of literature or some derivative." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3068 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Data resources for the biological or biomedical literature, either a primary source of literature or some derivative." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3068 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0607 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Laboratory_Information_management" ; + ns2:hasNarrowSynonym "Laboratory resources" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_0608 a owl:Class ; +ns1:topic_0608 a owl:Class ; rdfs:label "Cell and tissue culture" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "General cell culture or data on a specific cell lines." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "General cell culture or data on a specific cell lines." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0611 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Electron diffraction experiment" ; + ns2: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." ; + ns2:hasHumanReadableId "Electron_microscopy" ; + ns2:hasNarrowSynonym "Electron crystallography", "SEM", "Scanning electron microscopy", "Single particle electron microscopy", "TEM", "Transmission electron microscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_0612 a owl:Class ; +ns1:topic_0612 a owl:Class ; rdfs:label "Cell cycle" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "The cell cycle including key genes and proteins." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "The cell cycle including key genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0613 a owl:Class ; +ns1:topic_0613 a owl:Class ; rdfs:label "Peptides and amino acids" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The physicochemical, biochemical or structural properties of amino acids or peptides." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The physicochemical, biochemical or structural properties of amino acids or peptides." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0616 a owl:Class ; +ns1:topic_0616 a owl:Class ; rdfs:label "Organelles" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0617 a owl:Class ; +ns1:topic_0617 a owl:Class ; rdfs:label "Ribosomes" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "Ribosomes, typically of ribosome-related genes and proteins." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "Ribosomes, typically of ribosome-related genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0618 a owl:Class ; +ns1:topic_0618 a owl:Class ; rdfs:label "Scents" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0154 ; - oboInOwl:hasDefinition "A database about scents." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0154 ; + ns2:hasDefinition "A database about scents." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0620 a owl:Class ; +ns1:topic_0620 a owl:Class ; rdfs:label "Drugs and target structures" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The structures of drugs, drug target, their interactions and binding affinities." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The structures of drugs, drug target, their interactions and binding affinities." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0624 a owl:Class ; +ns1:topic_0624 a owl:Class ; rdfs:label "Chromosomes" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Study of chromosomes." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0654 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Study of chromosomes." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0654 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0629 a owl:Class ; +ns1:topic_0629 a owl:Class ; rdfs:label "Gene expression and microarray" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0635 a owl:Class ; +ns1:topic_0635 a owl:Class ; rdfs:label "Specific protein resources" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0623 ; - oboInOwl:hasDefinition "A particular protein, protein family or other group of proteins." ; - oboInOwl:hasExactSynonym "Specific protein" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "A particular protein, protein family or other group of proteins." ; + ns2:hasExactSynonym "Specific protein" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0637 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.25 Taxonomy" ; + ns2:hasDefinition "Organism classification, identification and naming." ; + ns2:hasHumanReadableId "Taxonomy" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3299 . + rdfs:subClassOf ns1:topic_3299 . -:topic_0641 a owl:Class ; +ns1:topic_0641 a owl:Class ; rdfs:label "Repeat sequences" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0157 ; - oboInOwl:hasDefinition "The repetitive nature of molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0157 ; + ns2:hasDefinition "The repetitive nature of molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0642 a owl:Class ; +ns1:topic_0642 a owl:Class ; rdfs:label "Low complexity sequences" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0157 ; - oboInOwl:hasDefinition "The (character) complexity of molecular sequences, particularly regions of low complexity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0157 ; + ns2:hasDefinition "The (character) complexity of molecular sequences, particularly regions of low complexity." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0644 a owl:Class ; +ns1:topic_0644 a owl:Class ; rdfs:label "Proteome" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "A specific proteome including protein sequences and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "A specific proteome including protein sequences and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0655 a owl:Class ; +ns1:topic_0655 a owl:Class ; rdfs:label "Coding RNA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0660 a owl:Class ; +ns1:topic_0660 a owl:Class ; rdfs:label "rRNA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0659 ; - oboInOwl:hasDefinition "One or more ribosomal RNA (rRNA) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0659 ; + ns2:hasDefinition "One or more ribosomal RNA (rRNA) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0663 a owl:Class ; +ns1:topic_0663 a owl:Class ; rdfs:label "tRNA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0659 ; - oboInOwl:hasDefinition "One or more transfer RNA (tRNA) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0659 ; + ns2:hasDefinition "One or more transfer RNA (tRNA) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0694 a owl:Class ; +ns1:topic_0694 a owl:Class ; rdfs:label "Protein secondary structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Protein secondary structure or secondary structure alignments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2814 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Protein secondary structure or secondary structure alignments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0697 a owl:Class ; rdfs:label "RNA structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "RNA secondary or tertiary structure and alignments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "RNA secondary or tertiary structure and alignments." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0698 a owl:Class ; +ns1:topic_0698 a owl:Class ; rdfs:label "Protein tertiary structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Protein tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2814 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Protein tertiary structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2814 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0722 a owl:Class ; +ns1:topic_0722 a owl:Class ; rdfs:label "Nucleic acid classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0623 ; - oboInOwl:hasDefinition "Classification of nucleic acid sequences and structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "Classification of nucleic acid sequences and structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0724 a owl:Class ; +ns1:topic_0724 a owl:Class ; rdfs:label "Protein families" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.14" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0623 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.14" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0623 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0740 a owl:Class ; +ns1:topic_0740 a owl:Class ; rdfs:label "Nucleic acid sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Nucleotide sequence alignments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Nucleotide sequence alignments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0741 a owl:Class ; +ns1:topic_0741 a owl:Class ; rdfs:label "Protein sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "Protein sequence alignments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Protein sequence alignments." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "A sequence profile typically represents a sequence alignment." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0747 a owl:Class ; +ns1:topic_0747 a owl:Class ; rdfs:label "Nucleic acid sites and features" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160, + ns1:topic_0640 ; + ns2:hasDefinition "The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0751 a owl:Class ; +ns1:topic_0751 a owl:Class ; rdfs:label "Phosphorylation sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :topic_0601, - :topic_0748 ; - oboInOwl:hasDefinition "Protein phosphorylation and phosphorylation sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:topic_0601, + ns1:topic_0748 ; + ns2:hasDefinition "Protein phosphorylation and phosphorylation sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0753 a owl:Class ; +ns1:topic_0753 a owl:Class ; rdfs:label "Metabolic pathways" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Metabolic pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Metabolic pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0754 a owl:Class ; +ns1:topic_0754 a owl:Class ; rdfs:label "Signaling pathways" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Signaling pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Signaling pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0767 a owl:Class ; +ns1:topic_0767 a owl:Class ; rdfs:label "Protein and peptide identification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Protein and peptide identification" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Protein and peptide identification" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0769 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Biological or biomedical analytical workflows or pipelines." ; + ns2:hasExactSynonym "Pipelines" ; + ns2:hasHumanReadableId "Workflows" ; + ns2:hasNarrowSynonym "Software integration", "Tool integration", "Tool interoperability" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_0770 a owl:Class ; +ns1:topic_0770 a owl:Class ; rdfs:label "Data types and objects" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :topic_0091 ; - oboInOwl:hasDefinition "Structuring data into basic types and (computational) objects." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:topic_0091 ; + ns2:hasDefinition "Structuring data into basic types and (computational) objects." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0771 a owl:Class ; +ns1:topic_0771 a owl:Class ; rdfs:label "Theoretical biology" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3307 ; - oboInOwl:hasDefinition "Theoretical biology" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3307 ; + ns2:hasDefinition "Theoretical biology" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0779 a owl:Class ; +ns1:topic_0779 a owl:Class ; rdfs:label "Mitochondria" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "Mitochondria, typically of mitochondrial genes and proteins." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "Mitochondria, typically of mitochondrial genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0781 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "VT 1.5.28" ; + ns2:hasDefinition "Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation." ; + ns2:hasHumanReadableId "Virology" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_0782 a owl:Class ; +ns1: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:hasDbXref "VT 1.5.21 Mycology" ; - oboInOwl:hasDefinition "Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation." ; - oboInOwl:hasNarrowSynonym "Yeast" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_2818 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDbXref "VT 1.5.21 Mycology" ; + ns2:hasDefinition "Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation." ; + ns2:hasNarrowSynonym "Yeast" ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_0621 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_0786 a owl:Class ; rdfs:label "Arabidopsis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0780 ; - oboInOwl:hasDefinition "Arabidopsis-specific data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0780 ; + ns2:hasDefinition "Arabidopsis-specific data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0787 a owl:Class ; +ns1:topic_0787 a owl:Class ; rdfs:label "Rice" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0780 ; - oboInOwl:hasDefinition "Rice-specific data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0780 ; + ns2:hasDefinition "Rice-specific data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0796 a owl:Class ; +ns1:topic_0796 a owl:Class ; rdfs:label "Genetic mapping and linkage" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0102 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0797 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study (typically comparison) of the sequence, structure or function of multiple genomes." ; + ns2:hasHumanReadableId "Comparative_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_0798 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns." ; + ns2:hasHumanReadableId "Mobile_genetic_elements" ; + ns2:hasNarrowSynonym "Transposons" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0114 . + rdfs:subClassOf ns1:topic_0114 . -:topic_0803 a owl:Class ; +ns1:topic_0803 a owl:Class ; rdfs:label "Human disease" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0634 ; - oboInOwl:hasDefinition "Human diseases, typically describing the genes, mutations and proteins implicated in disease." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0634 ; + ns2:hasDefinition "Human diseases, typically describing the genes, mutations and proteins implicated in disease." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0922 a owl:Class ; +ns1:topic_0922 a owl:Class ; rdfs:label "Primers" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "PCR primers and hybridisation oligos in a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0632 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "PCR primers and hybridisation oligos in a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0632 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1302 a owl:Class ; +ns1:topic_1302 a owl:Class ; rdfs:label "PolyA signal or sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1304 a owl:Class ; +ns1:topic_1304 a owl:Class ; rdfs:label "CpG island and isochores" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "CpG rich regions (isochores) in a nucleotide sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "CpG rich regions (isochores) in a nucleotide sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1305 a owl:Class ; +ns1:topic_1305 a owl:Class ; rdfs:label "Restriction sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3125 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3125 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1307 a owl:Class ; +ns1:topic_1307 a owl:Class ; rdfs:label "Splice sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:consider :topic_3320, - :topic_3512 ; - oboInOwl:hasDefinition "Splice sites in a nucleotide sequence or alternative RNA splicing events." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:consider ns1:topic_3320, + ns1:topic_3512 ; + ns2:hasDefinition "Splice sites in a nucleotide sequence or alternative RNA splicing events." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1308 a owl:Class ; +ns1:topic_1308 a owl:Class ; rdfs:label "Matrix/scaffold attachment sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3125 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3125 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1311 a owl:Class ; +ns1:topic_1311 a owl:Class ; rdfs:label "Operon" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Operons (operators, promoters and genes) from a bacterial genome." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0114 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Operons (operators, promoters and genes) from a bacterial genome." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0114 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1312 a owl:Class ; +ns1:topic_1312 a owl:Class ; rdfs:label "Promoters" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0749 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0749 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1456 a owl:Class ; +ns1:topic_1456 a owl:Class ; rdfs:label "Protein membrane regions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0736 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0736 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1811 a owl:Class ; +ns1: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:hasBroadSynonym "Bacteriology" ; - oboInOwl:hasDbXref "VT 1.5.2 Bacteriology" ; - oboInOwl:hasDefinition "Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_0621 ; + ns2:consider ns1:topic_0621 ; + ns2:hasBroadSynonym "Bacteriology" ; + ns2:hasDbXref "VT 1.5.2 Bacteriology" ; + ns2:hasDefinition "Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_2225 a owl:Class ; rdfs:label "Protein databases" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0078 ; - oboInOwl:hasDefinition "Protein data resources." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0078 ; + ns2:hasDefinition "Protein data resources." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2226 a owl:Class ; +ns1:topic_2226 a owl:Class ; rdfs:label "Structure determination" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_1317 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2230 a owl:Class ; +ns1:topic_2230 a owl:Class ; rdfs:label "Classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0089 ; + ns2:hasDefinition "Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2232 a owl:Class ; +ns1:topic_2232 a owl:Class ; rdfs:label "Lipoproteins" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0820 ; - oboInOwl:hasDefinition "Lipoproteins (protein-lipid assemblies)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0820 ; + ns2:hasDefinition "Lipoproteins (protein-lipid assemblies)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2257 a owl:Class ; +ns1:topic_2257 a owl:Class ; rdfs:label "Phylogeny visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0084 ; - oboInOwl:hasDefinition "Visualise a phylogeny, for example, render a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0084 ; + ns2:hasDefinition "Visualise a phylogeny, for example, render a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2269 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The application of statistical methods to biological problems." ; + ns2:hasHumanReadableId "Statistics_and_probability" ; + ns2:hasNarrowSynonym "Bayesian methods", "Biostatistics", "Descriptive statistics", "Gaussian processes", @@ -24964,721 +24961,721 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Probabilistic graphical model", "Probability", "Statistics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , , "http://en.wikipedia.org/wiki/Biostatistics", "http://purl.bioontology.org/ontology/MSH/D056808" ; - rdfs:subClassOf :topic_3315 . + rdfs:subClassOf ns1:topic_3315 . -:topic_2271 a owl:Class ; +ns1:topic_2271 a owl:Class ; rdfs:label "Structure database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0081 ; + ns2:hasDefinition "Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure)." ; + ns2:inSubset ns4: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 ; +ns1:topic_2276 a owl:Class ; rdfs:label "Protein function prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_1775 ; - oboInOwl:hasDefinition "The prediction of functional properties of a protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_1775 ; + ns2:hasDefinition "The prediction of functional properties of a protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2277 a owl:Class ; +ns1:topic_2277 a owl:Class ; rdfs:label "SNP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2278 a owl:Class ; +ns1:topic_2278 a owl:Class ; rdfs:label "Transmembrane protein prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0082, - :topic_0820 ; - oboInOwl:hasDefinition "Predict transmembrane domains and topology in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0082, + ns1:topic_0820 ; + ns2:hasDefinition "Predict transmembrane domains and topology in protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2280 a owl:Class ; +ns1:topic_2280 a owl:Class ; rdfs:label "Nucleic acid structure comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0097, - :topic_1770 ; - oboInOwl:hasDefinition "The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0097, + ns1:topic_1770 ; + ns2:hasDefinition "The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures." ; + ns2:inSubset ns4: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 ; +ns1:topic_2397 a owl:Class ; rdfs:label "Exons" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Exons in a nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Exons in a nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2399 a owl:Class ; +ns1:topic_2399 a owl:Class ; rdfs:label "Gene transcription" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Transcription of DNA into RNA including the regulation of transcription." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Transcription of DNA into RNA including the regulation of transcription." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2533 a owl:Class ; +ns1:topic_2533 a owl:Class ; rdfs:label "DNA mutation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DNA mutation." ; - oboInOwl:hasHumanReadableId "DNA_mutation" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA mutation." ; + ns2:hasHumanReadableId "DNA_mutation" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0199, - :topic_0654 . + rdfs:subClassOf ns1:topic_0199, + ns1:topic_0654 . -:topic_2640 a owl:Class ; +ns1: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 , + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.16 Oncology" ; + ns2:hasDefinition "The study of cancer, for example, genes and proteins implicated in cancer." ; + ns2:hasExactSynonym , "Cancer biology" ; - oboInOwl:hasHumanReadableId "Oncology" ; - oboInOwl:hasNarrowSynonym "Cancer", + ns2:hasHumanReadableId "Oncology" ; + ns2:hasNarrowSynonym "Cancer", "Neoplasm", "Neoplasms" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_2661 a owl:Class ; +ns1:topic_2661 a owl:Class ; rdfs:label "Toxins and targets" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Structural and associated data for toxic chemical substances." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Structural and associated data for toxic chemical substances." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2754 a owl:Class ; +ns1:topic_2754 a owl:Class ; rdfs:label "Introns" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Introns in a nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Introns in a nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2807 a owl:Class ; +ns1:topic_2807 a owl:Class ; rdfs:label "Tool topic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0003 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0003 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2809 a owl:Class ; +ns1:topic_2809 a owl:Class ; rdfs:label "Study topic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0003 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0003 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2811 a owl:Class ; +ns1:topic_2811 a owl:Class ; rdfs:label "Nomenclature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0089 ; - oboInOwl:hasDefinition "Biological nomenclature (naming), symbols and terminology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0089 ; + ns2:hasDefinition "Biological nomenclature (naming), symbols and terminology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2813 a owl:Class ; +ns1:topic_2813 a owl:Class ; rdfs:label "Disease genes and proteins" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0634 ; - oboInOwl:hasDefinition "The genes, gene variations and proteins involved in one or more specific diseases." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0634 ; + ns2:hasDefinition "The genes, gene variations and proteins involved in one or more specific diseases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2815 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The study of human beings in general, including the human genome and proteome." ; + ns2:hasExactSynonym "Humans" ; + ns2:hasHumanReadableId "Human_biology" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_2816 a owl:Class ; +ns1:topic_2816 a owl:Class ; rdfs:label "Gene resources" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3053 ; - oboInOwl:hasDefinition "Informatics resource (typically a database) primarily focussed on genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3053 ; + ns2:hasDefinition "Informatics resource (typically a database) primarily focussed on genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2817 a owl:Class ; +ns1:topic_2817 a owl:Class ; rdfs:label "Yeast" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2819 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_3500 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_2818 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_2826 a owl:Class ; rdfs:label "Protein structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2814 ; - oboInOwl:hasDefinition "Protein secondary or tertiary structure alignments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2814 ; + ns2:hasDefinition "Protein secondary or tertiary structure alignments." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2828 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Crystallography" ; + ns2:hasHumanReadableId "X-ray_diffraction" ; + ns2:hasNarrowSynonym "X-ray crystallography", "X-ray microscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_2829 a owl:Class ; +ns1:topic_2829 a owl:Class ; rdfs:label "Ontologies, nomenclature and classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0089 ; - oboInOwl:hasDefinition "Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0089 ; + ns2:hasDefinition "Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D002965" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2830 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Immunity-related proteins and their ligands." ; + ns2:hasHumanReadableId "Immunoproteins_and_antigens" ; + ns2:hasNarrowSynonym "Antigens", "Immunopeptides", "Immunoproteins", "Therapeutic antibodies" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0623, + ns1:topic_0804 . -:topic_2839 a owl:Class ; +ns1:topic_2839 a owl:Class ; rdfs:label "Molecules" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_3047 ; + ns2:hasDefinition "Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance." ; + ns2:hasRelatedSynonym "CHEBI:23367" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2840 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.9 Toxicology" ; + ns2:hasDefinition "Toxins and the adverse effects of these chemical substances on living organisms." ; + ns2:hasHumanReadableId "Toxicology" ; + ns2:hasNarrowSynonym "Computational toxicology", "Toxicoinformatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303, - :topic_3377 . + rdfs:subClassOf ns1:topic_3303, + ns1:topic_3377 . -:topic_2842 a owl:Class ; +ns1:topic_2842 a owl:Class ; rdfs:label "High-throughput sequencing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_3168 ; - oboInOwl:hasDefinition "Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously." ; - oboInOwl:hasExactSynonym "Next-generation sequencing" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_3168 ; + ns2:hasDefinition "Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously." ; + ns2:hasExactSynonym "Next-generation sequencing" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2846 a owl:Class ; +ns1:topic_2846 a owl:Class ; rdfs:label "Gene regulatory networks" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Gene regulatory networks." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Gene regulatory networks." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2847 a owl:Class ; +ns1:topic_2847 a owl:Class ; rdfs:label "Disease (specific)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0634 ; - oboInOwl:hasDefinition "Informatics resources dedicated to one or more specific diseases (not diseases in general)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0634 ; + ns2:hasDefinition "Informatics resources dedicated to one or more specific diseases (not diseases in general)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2867 a owl:Class ; +ns1:topic_2867 a owl:Class ; rdfs:label "VNTR" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2868 a owl:Class ; +ns1:topic_2868 a owl:Class ; rdfs:label "Microsatellites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasAlternativeId :data_2868 ; - oboInOwl:hasDefinition "Microsatellite polymorphism in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasAlternativeId ns1:data_2868 ; + ns2:hasDefinition "Microsatellite polymorphism in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2869 a owl:Class ; +ns1:topic_2869 a owl:Class ; rdfs:label "RFLP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasAlternativeId :data_2869 ; - oboInOwl:hasDefinition "Restriction fragment length polymorphisms (RFLP) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasAlternativeId ns1:data_2869 ; + ns2:hasDefinition "Restriction fragment length polymorphisms (RFLP) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2953 a owl:Class ; +ns1:topic_2953 a owl:Class ; rdfs:label "Nucleic acid design" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "Topic for the design of nucleic acid sequences with specific conformations." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "Topic for the design of nucleic acid sequences with specific conformations." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3032 a owl:Class ; +ns1:topic_3032 a owl:Class ; rdfs:label "Primer or probe design" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0632 ; - oboInOwl:hasDefinition "The design of primers for PCR and DNA amplification or the design of molecular probes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0632 ; + ns2:hasDefinition "The design of primers for PCR and DNA amplification or the design of molecular probes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3038 a owl:Class ; +ns1:topic_3038 a owl:Class ; rdfs:label "Structure databases" ; - :created_in "beta13" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_0081 ; - oboInOwl:hasDefinition "Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_0081 ; + ns2:hasDefinition "Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3039 a owl:Class ; +ns1:topic_3039 a owl:Class ; rdfs:label "Nucleic acid structure" ; - :created_in "beta13" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3041 a owl:Class ; +ns1:topic_3041 a owl:Class ; rdfs:label "Sequence databases" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "Molecular sequence data resources, including sequence sites, alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Molecular sequence data resources, including sequence sites, alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3042 a owl:Class ; +ns1:topic_3042 a owl:Class ; rdfs:label "Nucleic acid sequences" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3043 a owl:Class ; +ns1:topic_3043 a owl:Class ; rdfs:label "Protein sequences" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3044 a owl:Class ; +ns1:topic_3044 a owl:Class ; rdfs:label "Protein interaction networks" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein interaction networks" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein interaction networks" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3048 a owl:Class ; +ns1:topic_3048 a owl:Class ; rdfs:label "Mammals" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3050 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.5 Biodiversity conservation" ; + ns2:hasDefinition "The degree of variation of life forms within a given ecosystem, biome or an entire planet." ; + ns2:hasHumanReadableId "Biodiversity" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D044822" ; - rdfs:subClassOf :topic_0610 . + rdfs:subClassOf ns1:topic_0610 . -:topic_3052 a owl:Class ; +ns1:topic_3052 a owl:Class ; rdfs:label "Sequence clusters and classification" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "The comparison, grouping together and classification of macromolecules on the basis of sequence similarity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "The comparison, grouping together and classification of macromolecules on the basis of sequence similarity." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight)." ; + ns2:hasHumanReadableId "Quantitative_genetics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0625 . + rdfs:subClassOf ns1:topic_0625 . -:topic_3056 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Population_genetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3060 a owl:Class ; +ns1:topic_3060 a owl:Class ; rdfs:label "Regulatory RNA" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0659 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0659 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3061 a owl:Class ; +ns1:topic_3061 a owl:Class ; rdfs:label "Documentation and help" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The documentation of resources such as tools, services and databases and how to get help." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3068 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The documentation of resources such as tools, services and databases and how to get help." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3068 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3062 a owl:Class ; +ns1:topic_3062 a owl:Class ; rdfs:label "Genetic organisation" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0114 ; - oboInOwl:hasDefinition "The structural and functional organisation of genes and other genetic elements." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0114 ; + ns2:hasDefinition "The structural and functional organisation of genes and other genetic elements." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3063 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The application of information technology to health, disease and biomedicine." ; + ns2:hasExactSynonym "Biomedical informatics", "Clinical informatics", "Health and disease", "Health informatics", "Healthcare informatics" ; - oboInOwl:hasHumanReadableId "Medical_informatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Medical_informatics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_3067 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.1 Anatomy and morphology" ; + ns2:hasDefinition "The form and function of the structures of living organisms." ; + ns2:hasHumanReadableId "Anatomy" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3072 a owl:Class ; +ns1:topic_3072 a owl:Class ; rdfs:label "Sequence feature detection" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "The detection of the positional features, such as functional and other key sites, in molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "The detection of the positional features, such as functional and other key sites, in molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3073 a owl:Class ; +ns1:topic_3073 a owl:Class ; rdfs:label "Nucleic acid feature detection" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3511 ; - oboInOwl:hasDefinition "The detection of positional features such as functional sites in nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3511 ; + ns2:hasDefinition "The detection of positional features such as functional sites in nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3074 a owl:Class ; +ns1:topic_3074 a owl:Class ; rdfs:label "Protein feature detection" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "The detection, identification and analysis of positional protein sequence features, such as functional sites." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "The detection, identification and analysis of positional protein sequence features, such as functional sites." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3075 a owl:Class ; +ns1:topic_3075 a owl:Class ; rdfs:label "Biological system modelling" ; - :created_in "beta13" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_2259 ; - oboInOwl:hasDefinition "Topic for modelling biological systems in mathematical terms." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_2259 ; + ns2:hasDefinition "Topic for modelling biological systems in mathematical terms." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3078 a owl:Class ; +ns1:topic_3078 a owl:Class ; rdfs:label "Genes and proteins resources" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3118 a owl:Class ; +ns1:topic_3118 a owl:Class ; rdfs:label "Protein topological domains" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Topological domains such as cytoplasmic regions in a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0736 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Topological domains such as cytoplasmic regions in a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0736 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3120 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_0108 . - -:topic_3123 a owl:Class ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId ns1:data_3120 ; + ns2:hasDefinition "Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting." ; + ns2:hasHumanReadableId "Protein_variants" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_0108 . + +ns1:topic_3123 a owl:Class ; rdfs:label "Expression signals" ; - :created_in "beta13" ; - :obsolete_since "1.12" ; - oboInOwl:consider :topic_0749 ; - oboInOwl:hasDefinition "Regions within a nucleic acid sequence containing a signal that alters a biological function." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:topic_0749 ; + ns2:hasDefinition "Regions within a nucleic acid sequence containing a signal that alters a biological function." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3126 a owl:Class ; +ns1:topic_3126 a owl:Class ; rdfs:label "Nucleic acid repeats" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Repetitive elements within a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0157 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Repetitive elements within a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "DNA replication or recombination." ; + ns2:hasHumanReadableId "DNA_replication_and_recombination" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_0654 . + rdfs:subClassOf ns1:topic_0654 . -:topic_3135 a owl:Class ; +ns1:topic_3135 a owl:Class ; rdfs:label "Signal or transit peptide" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Coding sequences for a signal or transit peptide." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Coding sequences for a signal or transit peptide." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3139 a owl:Class ; +ns1:topic_3139 a owl:Class ; rdfs:label "Sequence tagged sites" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Sequence tagged sites (STS) in nucleic acid sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3511 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Sequence tagged sites (STS) in nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3511 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3169 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "ChIP-sequencing", "Chip Seq", "Chip sequencing", "Chip-sequencing" ; - oboInOwl:hasHumanReadableId "ChIP-seq" ; - oboInOwl:hasNarrowSynonym "ChIP-exo" ; - oboInOwl:inSubset edam:topics ; + ns2:hasHumanReadableId "ChIP-seq" ; + ns2:hasNarrowSynonym "ChIP-exo" ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3168, - :topic_3656 . + rdfs:subClassOf ns1:topic_3168, + ns1:topic_3656 . -:topic_3170 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "RNA sequencing", "RNA-Seq analysis", "Small RNA sequencing", "Small RNA-Seq", @@ -25686,32 +25683,32 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Transcriptome profiling", "WTSS", "Whole transcriptome shotgun sequencing" ; - oboInOwl:hasHumanReadableId "RNA-Seq" ; - oboInOwl:hasNarrowSynonym "MicroRNA sequencing", + ns2:hasHumanReadableId "RNA-Seq" ; + ns2:hasNarrowSynonym "MicroRNA sequencing", "miRNA-seq" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:topic_3168 . -:topic_3171 a owl:Class ; +ns1:topic_3171 a owl:Class ; rdfs:label "DNA methylation" ; - :created_in "1.1" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_3295 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3295 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3172 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Metabolomics" ; + ns2:hasNarrowSynonym "Exometabolomics", "LC-MS-based metabolomics", "MS-based metabolomics", "MS-based targeted metabolomics", @@ -25721,1083 +25718,1083 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Metabolome", "Metabonomics", "NMR-based metabolomics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D055432" ; - rdfs:subClassOf :topic_3391 . + rdfs:subClassOf ns1:topic_3391 . -:topic_3173 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; + ns2:hasHumanReadableId "Epigenomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_3295 . -:topic_3176 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.1" ; + ns2:hasDefinition "DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures." ; + ns2:hasHumanReadableId "DNA_packaging" ; + ns2:hasNarrowSynonym "Nucleosome positioning" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D042003" ; - rdfs:subClassOf :topic_0654 . + rdfs:subClassOf ns1:topic_0654 . -:topic_3177 a owl:Class ; +ns1:topic_3177 a owl:Class ; rdfs:label "DNA-Seq" ; - :created_in "1.1" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3168 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3178 a owl:Class ; +ns1:topic_3178 a owl:Class ; rdfs:label "RNA-Seq alignment" ; - :created_in "1.1" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0196 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3179 a owl:Class ; +ns1: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 edam:topics ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions." ; + ns2:hasExactSynonym "ChIP-chip" ; + ns2:hasHumanReadableId "ChIP-on-chip" ; + ns2:hasNarrowSynonym "ChiP" ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3656 . + rdfs:subClassOf ns1:topic_3656 . -:topic_3263 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.3" ; + ns2:hasDefinition "The protection of data, such as patient health data, from damage or unwanted access from unauthorised users." ; + ns2:hasExactSynonym "Data privacy" ; + ns2:hasHumanReadableId "Data_security" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3292 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.4 Biochemistry and molecular biology" ; + ns2:hasDefinition "Chemical substances and physico-chemical processes and that occur within living organisms." ; + ns2:hasExactSynonym "Biological chemistry" ; + ns2:hasHumanReadableId "Biochemistry" ; + ns2:hasNarrowSynonym "Glycomics", "Pathobiochemistry", "Phytochemistry" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3314 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3314 . -:topic_3298 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors." ; + ns2:hasHumanReadableId "Phenomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0625, - :topic_3299, - :topic_3391 . + rdfs:subClassOf ns1:topic_0625, + ns1:topic_3299, + ns1:topic_3391 . -:topic_3300 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Physiology" ; - oboInOwl:hasNarrowSynonym "Electrophysiology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3302 a owl:Class ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.8 Physiology" ; + ns2:hasDefinition "The functions of living organisms and their constituent parts." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Physiology" ; + ns2:hasNarrowSynonym "Electrophysiology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The biology of parasites." ; + ns2:hasHumanReadableId "Parasitology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3304 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Neuroscience" ; + ns2:hasDbXref "VT 3.1.5 Neuroscience" ; + ns2:hasDefinition "The study of the nervous system and brain; its anatomy, physiology and function." ; + ns2:hasHumanReadableId "Neurobiology" ; + ns2:hasNarrowSynonym "Molecular neuroscience", "Neurophysiology", "Systemetic neuroscience" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3305 a owl:Class ; +ns1: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:hasExactSynonym , + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.3.1 Epidemiology" ; + ns2:hasDefinition "Topic concerning the the patterns, cause, and effect of disease within populations." ; + ns2:hasExactSynonym , ; - oboInOwl:hasHumanReadableId "Public_health_and_epidemiology" ; - oboInOwl:hasNarrowSynonym "Epidemiology", + ns2:hasHumanReadableId "Public_health_and_epidemiology" ; + ns2:hasNarrowSynonym "Epidemiology", "Public health" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3306 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.9 Biophysics" ; + ns2:hasDefinition "The use of physics to study biological system." ; + ns2:hasHumanReadableId "Biophysics" ; + ns2:hasNarrowSynonym "Medical physics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3318 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3318 . -:topic_3322 a owl:Class ; +ns1: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 , + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.25 Respiratory systems" ; + ns2:hasDefinition "The study of respiratory system." ; + ns2:hasExactSynonym , "Pulmonary medicine", "Pulmonology" ; - oboInOwl:hasHumanReadableId "Respiratory_medicine" ; - oboInOwl:hasNarrowSynonym "Pulmonary disorders", + ns2:hasHumanReadableId "Respiratory_medicine" ; + ns2:hasNarrowSynonym "Pulmonary disorders", "Respiratory disease" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3323 a owl:Class ; +ns1:topic_3323 a owl:Class ; rdfs:label "Metabolic disease" ; - :created_in "1.3" ; - :obsolete_since "1.4" ; - oboInOwl:consider :topic_3407 ; - oboInOwl:hasDefinition "The study of metabolic diseases." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:topic_3407 ; + ns2:hasDefinition "The study of metabolic diseases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3325 a owl:Class ; +ns1:topic_3325 a owl:Class ; rdfs:label "Rare diseases" ; - :created_in "1.3" ; - oboInOwl:hasDefinition "The study of rare diseases." ; - oboInOwl:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Rare_diseases" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_0634 . - -:topic_3332 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "The study of rare diseases." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Rare_diseases" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_0634 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.7.4 Computational chemistry" ; + ns2:hasDefinition "Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems." ; + ns2:hasHumanReadableId "Computational_chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3314, - :topic_3316 . + rdfs:subClassOf ns1:topic_3314, + ns1:topic_3316 . -:topic_3334 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Neurology" ; - oboInOwl:hasNarrowSynonym "Neurological disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3335 a owl:Class ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The branch of medicine that deals with the anatomy, functions and disorders of the nervous system." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Neurology" ; + ns2:hasNarrowSynonym "Neurological disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3335 a owl:Class ; rdfs:label "Cardiology" ; - :created_in "1.3" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 3.2.22 Peripheral vascular disease", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "The diseases and abnormalities of the heart and circulatory system." ; + ns2:hasExactSynonym "Cardiovascular medicine" ; + ns2:hasHumanReadableId "Cardiology" ; + ns2:hasNarrowSynonym "Cardiovascular disease", "Heart disease" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3337 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Repositories of biological samples, typically human, for basic biological and clinical research." ; + ns2:hasExactSynonym "Tissue collection", "biobanking" ; - oboInOwl:hasHumanReadableId "Biobank" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Biobank" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3277 . + rdfs:subClassOf ns1:topic_3277 . -:topic_3338 a owl:Class ; +ns1: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:hasHumanReadableId "Mouse_clinic" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3277 . - -:topic_3339 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines." ; + ns2:hasHumanReadableId "Mouse_clinic" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3277 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3277 . - -:topic_3340 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of microbial cells including bacteria, yeasts and moulds." ; + ns2:hasHumanReadableId "Microbial_collection" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3277 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3277 . - -:topic_3341 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells." ; + ns2:hasHumanReadableId "Cell_culture_collection" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3277 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA." ; + ns2:hasHumanReadableId "Clone_library" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3277 . + rdfs:subClassOf ns1:topic_3277 . -:topic_3343 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of chemicals, typically for use in high-throughput screening experiments." ; + ns2:hasHumanReadableId "Compound_libraries_and_screening" ; + ns2:hasNarrowSynonym "Chemical library", "Chemical screening", "Compound library", "Small chemical compounds libraries", "Small compounds libraries", "Target identification and validation" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3336 . + rdfs:subClassOf ns1:topic_3336 . -:topic_3345 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3071 . - -:topic_3346 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases." ; + ns2:hasHumanReadableId "Data_identity_and_mapping" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3071 . + +ns1:topic_3346 a owl:Class ; rdfs:label "Sequence search" ; - :created_in "1.3" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The search and retrieval from a database on the basis of molecular sequence similarity." ; - oboInOwl:hasExactSynonym "Sequence database search" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The search and retrieval from a database on the basis of molecular sequence similarity." ; + ns2:hasExactSynonym "Sequence database search" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3360 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Objective indicators of biological state often used to assess health, and determinate treatment." ; + ns2:hasExactSynonym "Diagnostic markers" ; + ns2:hasHumanReadableId "Biomarkers" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3365 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasHumanReadableId "Data_architecture_analysis_and_design" ; + ns2:hasNarrowSynonym "Data analysis", "Data architecture", "Data design" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3366 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasHumanReadableId "Data_integration_and_warehousing" ; + ns2:hasNarrowSynonym "Data integration", "Data warehousing" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3368 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Any matter, surface or construct that interacts with a biological system." ; + ns2:hasHumanReadableId "Biomaterials" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3297 . + rdfs:subClassOf ns1:topic_3297 . -:topic_3369 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The use of synthetic chemistry to study and manipulate biological systems." ; + ns2:hasHumanReadableId "Chemical_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3371 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3371 . -:topic_3370 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 1.7.1 Analytical chemistry" ; + ns2:hasDefinition "The study of the separation, identification, and quantification of the chemical components of natural and artificial materials." ; + ns2:hasHumanReadableId "Analytical_chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3314 . + rdfs:subClassOf ns1:topic_3314 . -:topic_3372 a owl:Class ; +ns1:topic_3372 a owl:Class ; rdfs:label "Software engineering" ; - :created_in "1.4" ; - oboInOwl:hasDbXref "1.2.12 Programming languages", + ns1:created_in "1.4" ; + ns2: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", + ns2:hasDefinition "The process that leads from an original formulation of a computing problem to executable programs." ; + ns2:hasExactSynonym "Computer programming", "Software development" ; - oboInOwl:hasHumanReadableId "Software_engineering" ; - oboInOwl:hasNarrowSynonym "Algorithms", + ns2:hasHumanReadableId "Software_engineering" ; + ns2:hasNarrowSynonym "Algorithms", "Data structures", "Programming languages" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_3373 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The process of bringing a new drug to market once a lead compounds has been identified through drug discovery." ; + ns2:hasExactSynonym "Drug development science", "Medicine development", "Medicines development" ; - oboInOwl:hasHumanReadableId "Drug_development" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Drug_development" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376 . + rdfs:subClassOf ns1:topic_3376 . -:topic_3374 a owl:Class ; +ns1:topic_3374 a owl:Class ; rdfs:label "Biotherapeutics" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Drug delivery", + ns1:created_in "1.4" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3376 . - -:topic_3375 a owl:Class ; + ns2:hasDefinition "The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect." ; + ns2:hasHumanReadableId "Biotherapeutics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . + +ns1: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", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of how a drug interacts with the body." ; + ns2:hasHumanReadableId "Drug_metabolism" ; + ns2:hasNarrowSynonym "ADME", "Drug absorption", "Drug distribution", "Drug excretion", "Pharmacodynamics", "Pharmacokinetics", "Pharmacokinetics and pharmacodynamics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376 . + rdfs:subClassOf ns1:topic_3376 . -:topic_3378 a owl:Class ; +ns1:topic_3378 a owl:Class ; rdfs:label "Pharmacovigilance" ; - :created_in "1.4" ; - oboInOwl:hasDefinition "The detection, assesment, understanding and prevention of adverse effects of medicines." ; - oboInOwl:hasHumanReadableId "Pharmacovigilence" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The detection, assesment, understanding and prevention of adverse effects of medicines." ; + ns2:hasHumanReadableId "Pharmacovigilence" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:comment "Pharmacovigilence concerns safety once a drug has gone to market." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3377 . + rdfs:subClassOf ns1:topic_3377 . -:topic_3379 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities." ; + ns2:hasHumanReadableId "Preclinical_and_clinical_studies" ; + ns2:hasNarrowSynonym "Clinical studies", "Clinical study", "Clinical trial", "Drug trials", "Preclinical studies", "Preclinical study" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376, - :topic_3678 . + rdfs:subClassOf ns1:topic_3376, + ns1:topic_3678 . -:topic_3383 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of imaging techniques to understand biology." ; + ns2:hasExactSynonym "Biological imaging" ; + ns2:hasHumanReadableId "Biological_imaging" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3385 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of optical instruments to magnify the image of an object." ; + ns2:hasHumanReadableId "Light_microscopy" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3387 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.18 Marine and Freshwater biology" ; + ns2:hasDefinition "The study of organisms in the ocean or brackish waters." ; + ns2:hasHumanReadableId "Marine_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3388 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3342 . - -:topic_3390 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The identification of molecular and genetic causes of disease and the development of interventions to correct them." ; + ns2:hasHumanReadableId "Molecular_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3342 . + +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.3.7 Nutrition and Dietetics" ; + ns2: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." ; + ns2:hasExactSynonym "Nutrition", "Nutrition science" ; - oboInOwl:hasHumanReadableId "Nutritional_science" ; - oboInOwl:hasNarrowSynonym "Dietetics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Nutritional_science" ; + ns2:hasNarrowSynonym "Dietetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3393 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The processes that need to be in place to ensure the quality of products for human or animal use." ; + ns2:hasExactSynonym "Quality assurance" ; + ns2:hasHumanReadableId "Quality_affairs" ; + ns2:hasNarrowSynonym "Good clinical practice", "Good laboratory practice", "Good manufacturing practice" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3376 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . -:topic_3394 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasExactSynonym "Healthcare RA" ; + ns2:hasHumanReadableId "Regulatory_affairs" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376 . + rdfs:subClassOf ns1:topic_3376 . -:topic_3395 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Biomedical approaches to clinical interventions that involve the use of stem cells." ; + ns2:hasExactSynonym "Stem cell research" ; + ns2:hasHumanReadableId "Regenerative_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3396 a owl:Class ; +ns1: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, incoporating biochemical, physiological, and environmental interactions that sustain life." ; - oboInOwl:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Systems_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3397 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incoporating biochemical, physiological, and environmental interactions that sustain life." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Systems_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals." ; + ns2:hasHumanReadableId "Veterinary_medicine" ; + ns2:hasNarrowSynonym "Clinical veterinary medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3398 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The application of biological concepts and methods to the analytical and synthetic methodologies of engineering." ; + ns2:hasExactSynonym "Biological engineering" ; + ns2:hasHumanReadableId "Bioengineering" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3297 . + rdfs:subClassOf ns1:topic_3297 . -:topic_3399 a owl:Class ; +ns1:topic_3399 a owl:Class ; rdfs:label "Geriatric medicine" ; - :created_in "1.4" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Ageing", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2: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 , + ns2:hasDbXref "VT 3.2.10 Geriatrics and gerontology" ; + ns2:hasDefinition "The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging." ; + ns2:hasExactSynonym , "Geriatrics" ; - oboInOwl:hasHumanReadableId "Geriatric_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Geriatric_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3400 a owl:Class ; +ns1: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 mangement." ; - oboInOwl:hasHumanReadableId "Allergy_clinical_immunology_and_immunotherapeutics" ; - oboInOwl:hasNarrowSynonym "Allergy", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.1 Allergy" ; + ns2:hasDefinition "Health issues related to the immune system and their prevention, diagnosis and mangement." ; + ns2:hasHumanReadableId "Allergy_clinical_immunology_and_immunotherapeutics" ; + ns2:hasNarrowSynonym "Allergy", "Clinical immunology", "Immune disorders", "Immunomodulators", "Immunotherapeutics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , , ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3401 a owl:Class ; +ns1: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 , + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain." ; + ns2:hasExactSynonym , "Algiatry" ; - oboInOwl:hasHumanReadableId "Pain_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Pain_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3402 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.2 Anaesthesiology" ; + ns2:hasDefinition "Anaesthesia and anaesthetics." ; + ns2:hasExactSynonym "Anaesthetics" ; + ns2:hasHumanReadableId "Anaesthesiology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3403 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.5 Critical care/Emergency medicine" ; + ns2:hasDefinition "The multidisciplinary that cares for patients with acute, life-threatening illness or injury." ; + ns2:hasExactSynonym "Acute medicine", "Emergency medicine", "Intensive care medicine" ; - oboInOwl:hasHumanReadableId "Critical_care_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Critical_care_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3404 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Dermatology" ; - oboInOwl:hasNarrowSynonym "Dermatological disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3405 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.7 Dermatology and venereal diseases" ; + ns2:hasDefinition "The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Dermatology" ; + ns2:hasNarrowSynonym "Dermatological disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Dentistry" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3406 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Dentistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 , + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.20 Otorhinolaryngology" ; + ns2:hasDefinition "The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat." ; + ns2:hasExactSynonym , "Audiovestibular medicine", "Otolaryngology", "Otorhinolaryngology" ; - oboInOwl:hasHumanReadableId "Ear_nose_and_throat_medicine" ; - oboInOwl:hasNarrowSynonym "Head and neck disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3408 a owl:Class ; + ns2:hasHumanReadableId "Ear_nose_and_throat_medicine" ; + ns2:hasNarrowSynonym "Head and neck disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Haematology" ; - oboInOwl:hasNarrowSynonym "Blood disorders", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.11 Hematology" ; + ns2:hasDefinition "The branch of medicine that deals with the blood, blood-forming organs and blood diseases." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Haematology" ; + ns2:hasNarrowSynonym "Blood disorders", "Haematological disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3409 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Gastroenterology" ; - oboInOwl:hasNarrowSynonym "Gastrointestinal disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3410 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.8 Gastroenterology and hepatology" ; + ns2:hasDefinition "The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Gastroenterology" ; + ns2:hasNarrowSynonym "Gastrointestinal disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Gender_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3411 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Gender_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym , + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.15 Obstetrics and gynaecology" ; + ns2:hasDefinition "The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth." ; + ns2:hasExactSynonym , ; - oboInOwl:hasHumanReadableId "Gynaecology_and_obstetrics" ; - oboInOwl:hasNarrowSynonym "Gynaecological disorders", + ns2:hasHumanReadableId "Gynaecology_and_obstetrics" ; + ns2:hasNarrowSynonym "Gynaecological disorders", "Gynaecology", "Obstetrics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3412 a owl:Class ; +ns1: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 "Hepatobiliary medicine" ; - oboInOwl:hasHumanReadableId "Hepatic_and_biliary_medicine" ; - oboInOwl:hasNarrowSynonym "Liver disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3413 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The branch of medicine that deals with the liver, gallbladder, bile ducts and bile." ; + ns2:hasExactSynonym "Hepatobiliary medicine" ; + ns2:hasHumanReadableId "Hepatic_and_biliary_medicine" ; + ns2:hasNarrowSynonym "Liver disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3413 a owl:Class ; rdfs:label "Infectious tropical disease" ; - :created_in "1.4" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The branch of medicine that deals with the infectious diseases of the tropics." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3324 ; + ns1:created_in "1.4" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The branch of medicine that deals with the infectious diseases of the tropics." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3324 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3414 a owl:Class ; +ns1: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 , + ns1:created_in "1.4" ; + ns2:hasDefinition "The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident." ; + ns2:hasExactSynonym , "Traumatology" ; - oboInOwl:hasHumanReadableId "Trauma_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Trauma_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3415 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Medical_toxicology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3416 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Medical_toxicology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3416 a owl:Class ; rdfs:label "Musculoskeletal medicine" ; - :created_in "1.4" ; - oboInOwl:hasDbXref "VT 3.2.19 Orthopaedics", + ns1:created_in "1.4" ; + ns2: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", + ns2: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." ; + ns2:hasHumanReadableId "Musculoskeletal_medicine" ; + ns2:hasNarrowSynonym "Musculoskeletal disorders", "Orthopaedics", "Rheumatology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3417 a owl:Class ; +ns1:topic_3417 a owl:Class ; rdfs:label "Opthalmology" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Optometry" ; - oboInOwl:hasDbXref "VT 3.2.17 Ophthalmology", + ns1:created_in "1.4" ; + ns2:hasBroadSynonym "Optometry" ; + ns2: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Opthalmology" ; - oboInOwl:hasNarrowSynonym "Eye disoders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3418 a owl:Class ; + ns2:hasDefinition "The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Opthalmology" ; + ns2:hasNarrowSynonym "Eye disoders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 , + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.21 Paediatrics" ; + ns2:hasDefinition "The branch of medicine that deals with the medical care of infants, children and adolescents." ; + ns2:hasExactSynonym , "Child health" ; - oboInOwl:hasHumanReadableId "Paediatrics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Paediatrics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3419 a owl:Class ; +ns1: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 mangement of mental illness, emotional disturbance and abnormal behaviour." ; - oboInOwl:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Psychiatry" ; - oboInOwl:hasNarrowSynonym "Psychiatric disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3420 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasBroadSynonym "Mental health" ; + ns2:hasDbXref "VT 3.2.23 Psychiatry" ; + ns2:hasDefinition "The branch of medicine that deals with the mangement of mental illness, emotional disturbance and abnormal behaviour." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Psychiatry" ; + ns2:hasNarrowSynonym "Psychiatric disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Reproductive_health" ; - oboInOwl:hasNarrowSynonym "Andrology", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.3 Andrology" ; + ns2:hasDefinition "The health of the reproductive processes, functions and systems at all stages of life." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Reproductive_health" ; + ns2:hasNarrowSynonym "Andrology", "Family planning", "Fertility medicine", "Reproductive disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3421 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Surgery" ; - oboInOwl:hasNarrowSynonym "Transplantation" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3422 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.28 Transplantation" ; + ns2: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." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Surgery" ; + ns2:hasNarrowSynonym "Transplantation" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.29 Urology and nephrology" ; + ns2: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." ; + ns2:hasHumanReadableId "Urology_and_nephrology" ; + ns2:hasNarrowSynonym "Kidney disease", "Nephrology", "Urological disorders", "Urology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3423 a owl:Class ; +ns1:topic_3423 a owl:Class ; rdfs:label "Complementary medicine" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Alternative medicine", + ns1:created_in "1.4" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; + ns2:hasDbXref "VT 3.2.12 Integrative and Complementary medicine" ; + ns2: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." ; + ns2:hasHumanReadableId "Complementary_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3444 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." ; + ns2:hasExactSynonym "MRT", "Magnetic resonance imaging", "Magnetic resonance tomography", "NMRI", "Nuclear magnetic resonance imaging" ; - oboInOwl:hasHumanReadableId "MRI" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "MRI" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3448 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure." ; + ns2:hasExactSynonym "Neutron diffraction experiment" ; + ns2:hasHumanReadableId "Neutron_diffraction" ; + ns2:hasNarrowSynonym "Elastic neutron scattering", "Neutron microscopy" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_3452 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram)." ; + ns2:hasExactSynonym "CT", "Computed tomography", "TDM" ; - oboInOwl:hasHumanReadableId "Tomography" ; - oboInOwl:hasNarrowSynonym "Electron tomography", + ns2:hasHumanReadableId "Tomography" ; + ns2:hasNarrowSynonym "Electron tomography", "PET", "Positron emission tomography", "X-ray tomography" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3473 a owl:Class ; +ns1:topic_3473 a owl:Class ; rdfs:label "Data mining" ; - :created_in "1.7" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "KDD", + ns1:created_in "1.7" ; + ns1:isdebtag "true" ; + ns2: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 edam:edam, - edam:topics ; + ns2:hasDbXref "VT 1.3.2 Data mining" ; + ns2:hasDefinition "The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format." ; + ns2:hasHumanReadableId "Data_mining" ; + ns2:hasNarrowSynonym "Pattern recognition" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_3474 a owl:Class ; +ns1: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 ouput, rather than relying on explicitly encoded information only." ; - oboInOwl:hasHumanReadableId "Machine_learning" ; - oboInOwl:hasNarrowSynonym "Active learning", + ns1:created_in "1.7" ; + ns2:hasBroadSynonym "Artificial Intelligence" ; + ns2:hasDbXref "VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics)" ; + ns2: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 ouput, rather than relying on explicitly encoded information only." ; + ns2:hasHumanReadableId "Machine_learning" ; + ns2:hasNarrowSynonym "Active learning", "Ensembl learning", "Kernel methods", "Knowledge representation", @@ -26806,62 +26803,62 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Reinforcement learning", "Supervised learning", "Unsupervised learning" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_3514 a owl:Class ; +ns1:topic_3514 a owl:Class ; rdfs:label "Protein-ligand interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-ligand (small molecule) interaction(s)." ; - oboInOwl:hasNarrowSynonym "Protein-drug interactions" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-ligand (small molecule) interaction(s)." ; + ns2:hasNarrowSynonym "Protein-drug interactions" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3515 a owl:Class ; +ns1:topic_3515 a owl:Class ; rdfs:label "Protein-drug interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-drug interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-drug interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3516 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." ; + ns2:hasHumanReadableId "Genotyping_experiment" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3517 a owl:Class ; +ns1:topic_3517 a owl:Class ; rdfs:label "GWAS study" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "Genome-wide association study experiments." ; - oboInOwl:hasExactSynonym "GWAS", + ns1:created_in "1.8" ; + ns2:hasDefinition "Genome-wide association study experiments." ; + ns2:hasExactSynonym "GWAS", "GWAS analysis", "Genome-wide association study" ; - oboInOwl:hasHumanReadableId "GWAS_study" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "GWAS_study" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3678 . + rdfs:subClassOf ns1:topic_3678 . -:topic_3518 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDefinition "Microarray experiments including conditions, protocol, sample:data relationships etc." ; + ns2:hasExactSynonym "Microarrays" ; + ns2:hasHumanReadableId "Microarray_experiment" ; + ns2:hasNarrowSynonym "Gene expression microarray", "Genotyping array", "Methylation array", "MicroRNA array", @@ -26878,375 +26875,375 @@ ows re-sequencing of complete genomes of any given organism with high resolution "aCGH microarray", "mRNA microarray", "miRNA array" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3519 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; + ns2:hasExactSynonym "Polymerase chain reaction" ; + ns2:hasHumanReadableId "PCR_experiment" ; + ns2:hasNarrowSynonym "Quantitative PCR", "RT-qPCR", "Real Time Quantitative PCR" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3521 a owl:Class ; +ns1:topic_3521 a owl:Class ; rdfs:label "2D PAGE experiment" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3520 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3520 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3522 a owl:Class ; +ns1:topic_3522 a owl:Class ; rdfs:label "Northern blot experiment" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Northern Blot experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3520 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Northern Blot experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3520 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3523 a owl:Class ; +ns1:topic_3523 a owl:Class ; rdfs:label "RNAi experiment" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "RNAi experiments." ; - oboInOwl:hasHumanReadableId "RNAi_experiment" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3361 . - -:topic_3524 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "RNAi experiments." ; + ns2:hasHumanReadableId "RNAi_experiment" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3361 . + +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3361 . - -:topic_3525 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." ; + ns2:hasHumanReadableId "Simulation_experiment" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3361 . + +ns1:topic_3525 a owl:Class ; rdfs:label "Protein-nucleic acid interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-DNA/RNA interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-DNA/RNA interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3526 a owl:Class ; +ns1:topic_3526 a owl:Class ; rdfs:label "Protein-protein interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-protein interaction(s), including interactions between protein domains." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-protein interaction(s), including interactions between protein domains." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3527 a owl:Class ; +ns1:topic_3527 a owl:Class ; rdfs:label "Cellular process pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Cellular process pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Cellular process pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3528 a owl:Class ; +ns1:topic_3528 a owl:Class ; rdfs:label "Disease pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Disease pathways, typically of human disease." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Disease pathways, typically of human disease." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3529 a owl:Class ; +ns1:topic_3529 a owl:Class ; rdfs:label "Environmental information processing pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Environmental information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Environmental information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3530 a owl:Class ; +ns1:topic_3530 a owl:Class ; rdfs:label "Genetic information processing pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Genetic information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Genetic information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3531 a owl:Class ; +ns1:topic_3531 a owl:Class ; rdfs:label "Protein super-secondary structure" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Super-secondary structure of protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3542 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Super-secondary structure of protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3542 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3533 a owl:Class ; +ns1:topic_3533 a owl:Class ; rdfs:label "Protein active sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Catalytic residues (active site) of an enzyme." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Catalytic residues (active site) of an enzyme." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3535 a owl:Class ; +ns1:topic_3535 a owl:Class ; rdfs:label "Protein-nucleic acid binding sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3534 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3534 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3536 a owl:Class ; +ns1:topic_3536 a owl:Class ; rdfs:label "Protein cleavage sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3537 a owl:Class ; +ns1:topic_3537 a owl:Class ; rdfs:label "Protein chemical modifications" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Chemical modification of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0601 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Chemical modification of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0601 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3538 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_2814 . - -:topic_3539 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Disordered structure in a protein." ; + ns2:hasExactSynonym "Protein features (disordered structure)" ; + ns2:hasHumanReadableId "Protein_disordered_structure" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_2814 . + +ns1:topic_3539 a owl:Class ; rdfs:label "Protein domains" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Structural domains or 3D folds in a protein or polypeptide chain." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0736 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Structural domains or 3D folds in a protein or polypeptide chain." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0736 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3540 a owl:Class ; +ns1:topic_3540 a owl:Class ; rdfs:label "Protein key folding sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Key residues involved in protein folding." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Key residues involved in protein folding." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3541 a owl:Class ; +ns1:topic_3541 a owl:Class ; rdfs:label "Protein post-translational modifications" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Post-translation modifications in a protein sequence, typically describing the specific sites involved." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0601 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Post-translation modifications in a protein sequence, typically describing the specific sites involved." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0601 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3543 a owl:Class ; +ns1:topic_3543 a owl:Class ; rdfs:label "Protein sequence repeats" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Short repetitive subsequences (repeat sequences) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0157 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Short repetitive subsequences (repeat sequences) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0157 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3544 a owl:Class ; +ns1:topic_3544 a owl:Class ; rdfs:label "Protein signal peptides" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Signal peptides or signal peptide cleavage sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Signal peptides or signal peptide cleavage sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3569 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDbXref "VT 1.1.1 Applied mathematics" ; + ns2:hasDefinition "The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models." ; + ns2:hasHumanReadableId "Applied_mathematics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3315 . + rdfs:subClassOf ns1:topic_3315 . -:topic_3570 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDbXref "VT 1.1.1 Pure mathematics" ; + ns2:hasDefinition "The study of abstract mathematical concepts." ; + ns2:hasHumanReadableId "Pure_mathematics" ; + ns2:hasNarrowSynonym "Linear algebra" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3315 . + rdfs:subClassOf ns1:topic_3315 . -:topic_3571 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDefinition "The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints." ; + ns2:hasHumanReadableId "Data_governance" ; + ns2:hasNarrowSynonym "Data stewardship" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D030541" ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3572 a owl:Class ; +ns1: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", + ns1:created_in "1.10" ; + ns2:hasDefinition "The quality, integrity, and cleaning up of data." ; + ns2:hasHumanReadableId "Data_quality_management" ; + ns2:hasNarrowSynonym "Data clean-up", "Data cleaning", "Data integrity", "Data quality" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3573 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasBroadSynonym "Freshwater science" ; + ns2:hasDbXref "VT 1.5.18 Marine and Freshwater biology" ; + ns2:hasDefinition "The study of organisms in freshwater ecosystems." ; + ns2:hasHumanReadableId "Freshwater_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3574 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.10" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.2 Human genetics" ; + ns2:hasDefinition "The study of inheritance in human beings." ; + ns2:hasHumanReadableId "Human_genetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3575 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDbXref "VT 3.3.14 Tropical medicine" ; + ns2:hasDefinition "Health problems that are prevalent in tropical and subtropical regions." ; + ns2:hasHumanReadableId "Tropical_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3576 a owl:Class ; +ns1:topic_3576 a owl:Class ; rdfs:label "Medical biotechnology" ; - :created_in "1.10" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 3.3.14 Tropical medicine", + ns1:created_in "1.10" ; + ns1:isdebtag "true" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3297 . - -:topic_3577 a owl:Class ; + ns2:hasDefinition "Biotechnology applied to the medical sciences and the development of medicines." ; + ns2:hasHumanReadableId "Medical_biotechnology" ; + ns2:hasNarrowSynonym "Pharmaceutical biotechnology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3297 . + +ns1: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 , + ns1:created_in "1.10" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.4.5 Molecular diagnostics" ; + ns2:hasDefinition "An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease." ; + ns2:hasExactSynonym , "Precision medicine" ; - oboInOwl:hasHumanReadableId "Personalised_medicine" ; - oboInOwl:hasNarrowSynonym "Molecular diagnostics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3673 a owl:Class ; + ns2:hasHumanReadableId "Personalised_medicine" ; + ns2:hasNarrowSynonym "Molecular diagnostics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3673 a owl:Class ; rdfs:label "Whole genome sequencing" ; - :created_in "1.12" ; - :documentation ; - oboInOwl:hasDefinition "Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time." ; - oboInOwl:hasExactSynonym "Genome sequencing", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time." ; + ns2:hasExactSynonym "Genome sequencing", "WGS" ; - oboInOwl:hasHumanReadableId "Whole_genome_sequencing" ; - oboInOwl:hasNarrowSynonym "De novo genome sequencing", + ns2:hasHumanReadableId "Whole_genome_sequencing" ; + ns2:hasNarrowSynonym "De novo genome sequencing", "Whole genome resequencing" ; - oboInOwl:inSubset edam:topics ; - rdfs:subClassOf :topic_3168 . + ns2:inSubset ns4:topics ; + rdfs:subClassOf ns1:topic_3168 . -:topic_3674 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Laboratory technique to sequence the methylated regions in DNA." ; + ns2:hasExactSynonym "MeDIP-chip", "MeDIP-seq", "mDIP" ; - oboInOwl:hasHumanReadableId "Methylated_DNA_immunoprecipitation" ; - oboInOwl:hasNarrowSynonym "BS-Seq", + ns2:hasHumanReadableId "Methylated_DNA_immunoprecipitation" ; + ns2:hasNarrowSynonym "BS-Seq", "Bisulfite sequencing", "MeDIP", "Methylated DNA immunoprecipitation (MeDIP)", @@ -27255,89 +27252,89 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Whole-genome bisulfite sequencing", "methy-seq", "methyl-seq" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3656 . + rdfs:subClassOf ns1:topic_3656 . -:topic_3676 a owl:Class ; +ns1:topic_3676 a owl:Class ; rdfs:label "Exome sequencing" ; - :created_in "1.12" ; - :documentation ; - oboInOwl:hasDefinition "Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome." ; - oboInOwl:hasExactSynonym "Exome", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome." ; + ns2:hasExactSynonym "Exome", "Exome analysis", "Exome capture", "Targeted exome capture", "WES", "Whole exome sequencing" ; - oboInOwl:hasHumanReadableId "Exome_sequencing" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "Exome_sequencing" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "Exome sequencing is considered a cheap alternative to whole genome sequencing." ; - rdfs:subClassOf :topic_3168 . + rdfs:subClassOf ns1:topic_3168 . -:topic_3679 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3386, - :topic_3678 . - -:topic_3697 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "The design of an experiment involving non-human animals." ; + ns2:hasHumanReadableId "Animal_study" ; + ns2:hasNarrowSynonym "Challenge study" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3386, + ns1:topic_3678 . + +ns1: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", + ns1:created_in "1.13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The ecology of microorganisms including their relationship with one another and their environment." ; + ns2:hasExactSynonym "Environmental microbiology" ; + ns2:hasHumanReadableId "Microbial_ecology" ; + ns2:hasNarrowSynonym "Community analysis", "Microbiome", "Molecular community analysis" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0610, - :topic_3301 . + rdfs:subClassOf ns1:topic_0610, + ns1:topic_3301 . -:topic_3794 a owl:Class ; +ns1: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", + ns1:created_in "1.17" ; + ns2:hasDefinition "An antibody-based technique used to map in vivo RNA-protein interactions." ; + ns2:hasExactSynonym "RIP" ; + ns2:hasHumanReadableId "RNA_immunoprecipitation" ; + ns2:hasNarrowSynonym "CLIP", "CLIP-seq", "HITS-CLIP", "PAR-CLIP", "iCLIP" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3656 . + rdfs:subClassOf ns1:topic_3656 . -:topic_3796 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.17" ; + ns2:hasDefinition "Large-scale study (typically comparison) of DNA sequences of populations." ; + ns2:hasHumanReadableId "Population_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_3810 a owl:Class ; +ns1:topic_3810 a owl:Class ; rdfs:label "Agricultural science" ; - :created_in "1.20" ; - oboInOwl:hasBroadSynonym "Agriculture", + ns1:created_in "1.20" ; + ns2:hasBroadSynonym "Agriculture", "Agroecology", "Agronomy" ; - oboInOwl:hasDefinition "Multidisciplinary study, research and development within the field of agriculture." ; - oboInOwl:hasHumanReadableId "Agricultural_science" ; - oboInOwl:hasNarrowSynonym "", + ns2:hasDefinition "Multidisciplinary study, research and development within the field of agriculture." ; + ns2:hasHumanReadableId "Agricultural_science" ; + ns2:hasNarrowSynonym "", "Agricultural biotechnology", "Agricultural economics", "Animal breeding", @@ -27353,282 +27350,282 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Plant nutrition", "Plant pathology", "Soil science" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3837 a owl:Class ; +ns1:topic_3837 a owl:Class ; rdfs:label "Metagenomic sequencing" ; - :created_in "1.20" ; - :documentation ; - 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 edam:topics ; - rdfs:subClassOf :topic_3168 . - -:topic_3855 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "Shotgun metagenomic sequencing" ; + ns2:hasHumanReadableId "Metagenomic_sequencing" ; + ns2:inSubset ns4:topics ; + rdfs:subClassOf ns1:topic_3168 . + +ns1:topic_3855 a owl:Class ; rdfs:label "Environmental science" ; - :created_in "1.21" ; - 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:hasExactSynonym "Environment" ; - oboInOwl:hasHumanReadableId "Environmental_science" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "1.21" ; + ns2: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." ; + ns2:hasExactSynonym "Environment" ; + ns2:hasHumanReadableId "Environmental_science" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3895 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.22" ; + ns2:hasDefinition "The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications." ; + ns2:hasNarrowSynonym "Biomimeic chemistry" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3297 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3297 . -:topic_3912 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "The application of biotechnology to directly manipulate an organism's genes." ; + ns2:hasExactSynonym "Genetic manipulation", "Genetic modification" ; - oboInOwl:hasHumanReadableId "Genetic_engineering" ; - oboInOwl:hasNarrowSynonym "Genome editing", + ns2:hasHumanReadableId "Genetic_engineering" ; + ns2:hasNarrowSynonym "Genome editing", "Genome engineering" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053, - :topic_3297 . + rdfs:subClassOf ns1:topic_3053, + ns1:topic_3297 . -:topic_3922 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database." ; + ns2:hasHumanReadableId "Proteogenomics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_3930 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system." ; + ns2:hasExactSynonym "Immune system genetics", "Immungenetics", "Immunology and genetics" ; - oboInOwl:hasHumanReadableId "Immunogenetics" ; - oboInOwl:hasNarrowSynonym "Immunogenes" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "Immunogenetics" ; + ns2:hasNarrowSynonym "Immunogenes" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0804, + ns1:topic_3053 . -:topic_3934 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Cytometry is the measurement of the characteristics of cells." ; + ns2:hasHumanReadableId "Cytometry" ; + ns2:hasNarrowSynonym "Flow cytometry", "Image cytometry", "Mass cytometry" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3940 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Molecular biology methods used to analyze the spatial organization of chromatin in a cell." ; + ns2:hasExactSynonym "3C technologies", "3C-based methods", "Chromosome conformation analysis" ; - oboInOwl:hasHumanReadableId "Chromosome_conformation_capture" ; - oboInOwl:hasNarrowSynonym "Chromatin accessibility", + ns2:hasHumanReadableId "Chromosome_conformation_capture" ; + ns2:hasNarrowSynonym "Chromatin accessibility", "Chromatin accessibility assay" ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3941 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "The study of microbe gene expression within natural environments (i.e. the metatranscriptome)." ; + ns2:hasHumanReadableId "Metatranscriptomics" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0203, + ns1:topic_3308 . -:topic_3943 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "The reconstruction and analysis of genomic information in extinct species." ; + ns2:hasHumanReadableId "Paleogenomics" ; + ns2:hasNarrowSynonym "Ancestral genomes", "Paleogenetics" ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_3944 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "The biological classification of organisms by categorizing them in groups (\"clades\") based on their most recent common ancestor." ; + ns2:hasHumanReadableId "Cladistics" ; + ns2:hasNarrowSynonym "Tree of life" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0080, - :topic_0084 . + rdfs:subClassOf ns1:topic_0080, + ns1:topic_0084 . -:topic_3945 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations." ; + ns2:hasHumanReadableId "Molecular_evolution" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0625, - :topic_3299, - :topic_3391 . + rdfs:subClassOf ns1:topic_0625, + ns1:topic_3299, + ns1:topic_3391 . -:topic_3948 a owl:Class ; +ns1: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" ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Computational immunology" ; + ns2: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 . + rdfs:subClassOf ns1:topic_0605, + ns1:topic_0804 . -:topic_3954 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "A diagnostic imaging technique based on the application of ultrasound." ; + ns2:hasExactSynonym "Standardized echography", "Ultrasound imaging" ; - oboInOwl:hasHumanReadableId "Echography" ; - oboInOwl:hasNarrowSynonym "Diagnostic sonography", + ns2:hasHumanReadableId "Echography" ; + ns2:hasNarrowSynonym "Diagnostic sonography", "Medical ultrasound", "Standard echography", "Ultrasonography" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3382 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3382 . -:topic_3955 a owl:Class ; +ns1: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" ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity." ; + ns2:hasHumanReadableId "Fluxomics" ; rdfs:comment "The \"fluxome\" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype." ; - rdfs:subClassOf :topic_3391 . + rdfs:subClassOf ns1:topic_3391 . -:topic_3957 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "An experiment for studying protein-protein interactions." ; + ns2:hasHumanReadableId "Protein_interaction_experiment" ; + ns2:hasNarrowSynonym "Co-immunoprecipitation", "Phage display", "Yeast one-hybrid", "Yeast two-hybrid" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3958 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns2: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." ; + ns2:hasHumanReadableId "Copy_number_variation" ; + ns2:hasNarrowSynonym "CNV deletion", "CNV duplication", "CNV insertion / amplification", "Complex CNV", "Copy number variant" ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3175 . + rdfs:subClassOf ns1:topic_3175 . -:topic_3959 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.25" ; + ns2:hasDefinition "The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis." ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3321 . + rdfs:subClassOf ns1:topic_3321 . -:topic_3966 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns2: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." ; + ns2:hasHumanReadableId "Vaccinology" ; + ns2:hasNarrowSynonym "Rational vaccine design", "Reverse vaccinology", "Structural vaccinology", "Structure-based immunogen design", "Vaccine design" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3376 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . -:topic_3967 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3391 . + ns1:created_in "1.25" ; + ns2:hasDefinition "The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches." ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3391 . -:topic_3974 a owl:Class ; +ns1:topic_3974 a owl:Class ; rdfs:label "Epistasis" ; - :created_in "1.25" ; - :documentation ; - oboInOwl:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; - oboInOwl:hasExactSynonym "Epistatic genetic interaction", + ns1:created_in "1.25" ; + ns1:documentation ; + ns2:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; + ns2:hasExactSynonym "Epistatic genetic interaction", "Epistatic interactions" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The study of the phenomena whereby the effects of one locus mask the allelic effects of another, such as how dominant alleles mask the effects of the recessive alleles at the same locus." ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D057890" ; - rdfs:subClassOf :topic_0622, - :topic_3295 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_3295 . -oboOther:date a owl:AnnotationProperty . +ns3:date a owl:AnnotationProperty . -edam:placeholder a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:placeholder a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -oboOther:idspace a owl:AnnotationProperty . +ns3:idspace a owl:AnnotationProperty . -oboOther:is_anti_symmetric a owl:AnnotationProperty . +ns3:is_anti_symmetric a owl:AnnotationProperty . -oboOther:is_metadata_tag a owl:AnnotationProperty . +ns3:is_metadata_tag a owl:AnnotationProperty . -oboOther:is_reflexive a owl:AnnotationProperty . +ns3:is_reflexive a owl:AnnotationProperty . -oboOther:is_symmetric a owl:AnnotationProperty . +ns3:is_symmetric a owl:AnnotationProperty . -oboOther:namespace a owl:AnnotationProperty . +ns3:namespace a owl:AnnotationProperty . -oboOther:remark a owl:AnnotationProperty . +ns3:remark a owl:AnnotationProperty . -oboOther:transitive_over a owl:AnnotationProperty . +ns3:transitive_over a owl:AnnotationProperty . dc:contributor a owl:AnnotationProperty . @@ -27640,2748 +27637,2748 @@ dc:title a owl:AnnotationProperty . doap:Version a owl:AnnotationProperty . -oboInOwl:ObsoleteClass a owl:Class ; +ns2:ObsoleteClass a owl:Class ; rdfs:label "Obsolete concept (EDAM)" ; - :created_in "1.2" ; - oboInOwl:hasDefinition "An obsolete concept (redefined in EDAM)." ; - oboInOwl:replacedBy owl:DeprecatedClass ; + ns1:created_in "1.2" ; + ns2:hasDefinition "An obsolete concept (redefined in EDAM)." ; + ns2:replacedBy owl:DeprecatedClass ; rdfs:comment "Needed for conversion to the OBO format." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -oboInOwl:comment a owl:AnnotationProperty . +ns2:comment a owl:AnnotationProperty . -oboInOwl:consider a owl:AnnotationProperty . +ns2:consider a owl:AnnotationProperty . -oboInOwl:hasDbXRef a owl:AnnotationProperty . +ns2:hasDbXRef a owl:AnnotationProperty . -oboInOwl:hasDbXref a owl:AnnotationProperty . +ns2:hasDbXref a owl:AnnotationProperty . -oboInOwl:hasDefinition a owl:AnnotationProperty . +ns2:hasDefinition a owl:AnnotationProperty . -oboInOwl:hasHumanReadableId a owl:AnnotationProperty . +ns2:hasHumanReadableId a owl:AnnotationProperty . -oboInOwl:hasSubset a owl:AnnotationProperty . +ns2:hasSubset a owl:AnnotationProperty . -oboInOwl:inSubset a owl:AnnotationProperty . +ns2:inSubset a owl:AnnotationProperty . -oboInOwl:replacedBy a owl:AnnotationProperty . +ns2:replacedBy a owl:AnnotationProperty . -oboInOwl:savedBy a owl:AnnotationProperty . +ns2:savedBy a owl:AnnotationProperty . foaf:page a owl:AnnotationProperty . -:data_0862 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0867 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A dotplot of sequence similarities identified from word-matching or character comparison." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0867 . -:data_0878 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2366 . - -:data_0881 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:is_deprecation_candidate "true" ; + ns2:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more proteins." ; + ns2:hasExactSynonym "Secondary structure alignment (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2366 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2366 . - -:data_0887 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:is_deprecation_candidate "true" ; + ns2:hasDbXref "Moby:RNAStructAlignmentML" ; + ns2:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more RNA molecules." ; + ns2:hasExactSynonym "Secondary structure alignment (RNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2366 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report of molecular tertiary structure alignment-derived data." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_0892 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of values used for scoring sequence-structure compatibility." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . -:data_0924 a owl:Class ; +ns1: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 interprted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fluorescence trace data generated by an automated DNA sequencer, which can be interprted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is the raw data produced by a DNA sequencing machine." ; - rdfs:subClassOf :data_1234, - :data_3108 . + rdfs:subClassOf ns1:data_1234, + ns1:data_3108 . -:data_0928 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603 . - -:data_0944 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments." ; + ns2:hasRelatedSynonym "Gene expression pattern" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A set of peptide masses (peptide mass fingerprint) from mass spectrometry." ; + ns2:hasExactSynonym "Peak list", "Protein fingerprint" ; - oboInOwl:hasNarrowSynonym "Molecular weights standard fingerprint" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "Molecular weights standard fingerprint" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_2536, + ns1:data_2979 . -:data_0954 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2093 . -:data_0963 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Cell line annotation", "Organism strain data" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2530 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2530 . -:data_0977 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_0983 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a bioinformatics tool, e.g. an application or web service." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_0987 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier (e.g. character symbol) of a specific atom." ; + ns2:hasExactSynonym "Atom identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_0987 a owl:Class ; rdfs:label "Chromosome name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a chromosome." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0919 ], - :data_0984, - :data_2119 . - -:data_0995 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a chromosome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0919 ], + ns1:data_0984, + ns1:data_2119 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086 . - -:data_0996 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of a nucleotide." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086 . + +ns1:data_0996 a owl:Class ; rdfs:label "Monosaccharide identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a monosaccharide." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086 . - -:data_1002 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a monosaccharide." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "CAS chemical registry number", "Chemical registry number (CAS)" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0991, - :data_2091, - :data_2895 . - -:data_1012 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0991, + ns1:data_2091, + ns1:data_2895 . + +ns1:data_1012 a owl:Class ; rdfs:label "Enzyme name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of an enzyme." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009, - :data_1010 . - -:data_1022 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an enzyme." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009, + ns1:data_1010 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence feature name" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2099, + ns1:data_2914, + ns1:data_3034 . -:data_1037 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2295, - :data_2387 . - -:data_1043 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "Gene:[0-9]{7}" ; + ns2:hasDefinition "Identifier of an gene from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2295, + ns1:data_2387 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "3.30.1190.10.1.1.1.1.1" ; + ns2:hasDefinition "A code number identifying a node from the CATH database." ; + ns2:hasExactSynonym "CATH code", "CATH node identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2700 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2700 . -:data_1046 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2379, - :data_2909 . - -:data_1048 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a strain of an organism variant, typically a plant, virus or bacterium." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2379, + ns1:data_2909 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0957 ], - :data_0976 . - -:data_1053 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a biological or bioinformatics database." ; + ns2:hasExactSynonym "Database identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_0976 . + +ns1:data_1053 a owl:Class ; rdfs:label "URN" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A Uniform Resource Name (URN)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1047 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A Uniform Resource Name (URN)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1047 . -:data_1056 a owl:Class ; +ns1:data_1056 a owl:Class ; rdfs:label "Database name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a biological or bioinformatics database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1048, - :data_2099 . - -:data_1069 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a biological or bioinformatics database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1048, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0874 ], - :data_3036 . - -:data_1072 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a comparison matrix." ; + ns2:hasExactSynonym "Substitution matrix identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0874 ], + ns1:data_3036 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0886 ], - :data_0976 . - -:data_1073 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of tertiary structure alignments." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0886 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1501 ], - :data_0976, - :data_3036 . - -:data_1079 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an index of amino acid physicochemical and biochemical property data." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1501 ], + ns1:data_0976, + ns1:data_3036 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_3805 ], - :data_0976 . - -:data_1083 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of electron microscopy data." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_3805 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_1104 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a biological or biomedical workflow, typically from a database of workflows." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of an entry (gene cluster) from the NCBI UniGene database." ; + ns2:hasExactSynonym "UniGene ID", "UniGene cluster ID", "UniGene identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . -:data_1133 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "IPR015590" ; + ns1:regex "IPR[0-9]{6}" ; + ns2:hasDefinition "Primary accession number of an InterPro entry." ; + ns2:hasExactSynonym "InterPro primary accession", "InterPro primary accession number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1355 ], + ns1:data_2091, + ns1:data_2910 . -:data_1165 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:example "UniProt|Enzyme Nomenclature" ; + ns2:hasDefinition "The primary name of a data type from the MIRIAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "The primary name of a MIRIAM data type is taken from a controlled vocabulary." ; - rdfs:subClassOf :data_1163 . + rdfs:subClassOf ns1:data_1163 . -:data_1238 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_1233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_1233 . -:data_1239 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1234 . - -:data_1240 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "SO:0000412" ; + ns2:hasDefinition "Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1234 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1234 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1234 . -:data_1246 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A cluster of nucleotide sequences." ; + ns2:hasExactSynonym "Nucleotide sequence cluster" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The sequences are typically related, for example a family of sequences." ; - rdfs:subClassOf :data_1234, - :data_1235 . + rdfs:subClassOf ns1:data_1234, + ns1:data_1235 . -:data_1259 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1254 . - -:data_1260 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on sequence complexity, for example low-complexity or repeat regions in sequences." ; + ns2:hasExactSynonym "Sequence property (complexity)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1254 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1254 . - -:data_1263 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on ambiguity in molecular sequence(s)." ; + ns2:hasExactSynonym "Sequence property (ambiguity)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1254 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of third base position variability in a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261 . -:data_1266 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1268 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of word composition of a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1270 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of amino acid word composition of a protein sequence." ; + ns2:hasExactSynonym "Sequence composition (amino acid words)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1255 . - -:data_1283 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotation of positional sequence features, organised into a standard feature table." ; + ns2:hasExactSynonym "Sequence feature table" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1255 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map showing banding patterns derived from direct observation of a stained chromosome." ; + ns2:hasExactSynonym "Chromosome map", "Cytogenic map", "Cytologic map" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1280 . -:data_1289 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1279, - :data_2969 . - -:data_1347 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279, + ns1:data_2969 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dirichlet distribution used by hidden Markov model analysis programs." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . -:data_1383 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple nucleotide sequences." ; + ns2:hasExactSynonym "Sequence alignment (nucleic acid)" ; + ns2:hasNarrowSynonym "DNA sequence alignment", "RNA sequence alignment" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0863 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0863 . -:data_1385 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple molecular sequences of different types." ; + ns2:hasExactSynonym "Sequence alignment (hybrid)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA." ; - rdfs:subClassOf :data_0863 . + rdfs:subClassOf ns1:data_0863 . -:data_1410 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1397 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1397 . -:data_1411 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1398 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1398 . -:data_1413 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Data Type is float probably." ; - rdfs:subClassOf :data_0865 . + rdfs:subClassOf ns1:data_0865 . -:data_1427 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Character data with discrete states that may be read during phylogenetic tree calculation." ; + ns2:hasExactSynonym "Discrete characters", "Discretely coded characters", "Phylogenetic discrete states" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0871 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0871 . -:data_1428 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . - -:data_1429 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic report (cliques)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic invariants data for testing alternative tree topologies." ; + ns2:hasExactSynonym "Phylogenetic report (invariants)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0199 ], - :data_2523 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], + ns1:data_2523 . -:data_1462 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a carbohydrate (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0153 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0153 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0152 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0152 ], + ns1:data_0883 . -:data_1464 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1459 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a DNA tertiary (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1459 . -:data_1519 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The report might include associated data such as frequency of peptide fragment molecular weights." ; - rdfs:subClassOf :data_0897 . + rdfs:subClassOf ns1:data_0897 . -:data_1520 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on the hydrophobic moment of a polypeptide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; - rdfs:subClassOf :data_2970 . + rdfs:subClassOf ns1:data_2970 . -:data_1521 a owl:Class ; +ns1:data_1521 a owl:Class ; rdfs:label "Protein aliphatic index" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The aliphatic index of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The aliphatic index of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The aliphatic index is the relative protein volume occupied by aliphatic side chains." ; - rdfs:subClassOf :data_2970 . + rdfs:subClassOf ns1:data_2970 . -:data_1524 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2970 . - -:data_1525 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The solubility or atomic solvation energy of a protein sequence or structure." ; + ns2:hasExactSynonym "Protein solubility data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2970 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2970 . - -:data_1526 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the crystallizability of a protein sequence." ; + ns2:hasExactSynonym "Protein crystallizability data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2970 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2970 . - -:data_1527 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the stability, intrinsic disorder or globularity of a protein sequence." ; + ns2:hasExactSynonym "Protein globularity data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2970 . + +ns1:data_1527 a owl:Class ; rdfs:label "Protein titration curve" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The titration curve of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897, - :data_2884 . - -:data_1528 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The titration curve of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897, + ns1:data_2884 . + +ns1:data_1528 a owl:Class ; rdfs:label "Protein isoelectric point" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The isoelectric point of one proteins." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The isoelectric point of one proteins." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1530 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The hydrogen exchange rate of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1531 a owl:Class ; +ns1:data_1531 a owl:Class ; rdfs:label "Protein extinction coefficient" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The extinction coefficient of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The extinction coefficient of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1542 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the solvent accessible or buried surface area of a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0897 . -:data_1544 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2991 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phi/psi angle data or a Ramachandran plot of a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2991 . -:data_1545 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the net charge distribution (dipole moment) of a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1546 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906, - :data_2855 . - -:data_1547 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906, + ns1:data_2855 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An amino acid residue contact map for a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . -:data_1548 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on clusters of contacting residues in protein structures such as a key structural residue network." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . -:data_1549 a owl:Class ; +ns1:data_1549 a owl:Class ; rdfs:label "Protein hydrogen bonds" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Patterns of hydrogen bonding in protein structures." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Patterns of hydrogen bonding in protein structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . -:data_1566 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . - -:data_1584 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report on protein-ligand (small molecule) interaction(s)." ; + ns2:hasNarrowSynonym "Protein-drug interaction report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2985 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2985 . -:data_1596 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Nucleic acid report (folding model)", "Nucleic acid report (folding)" ; - oboInOwl:hasNarrowSynonym "RNA secondary structure folding classification", + ns2:hasNarrowSynonym "RNA secondary structure folding classification", "RNA secondary structure folding probablities" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2084 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2084 . -:data_1602 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0914 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The differences in codon usage fractions between two codon usage tables." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0914 . -:data_1636 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968, - :data_3768 . - -:data_1713 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968, + ns1:data_3768 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3065 ], - :data_2968 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3065 ], + ns1:data_2968 . -:data_1714 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603, - :data_3424 . - -:data_1757 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of spots from a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603, + ns1:data_3424 . + +ns1:data_1757 a owl:Class ; rdfs:label "Atom name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of an atom." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0983, - :data_2099 . - -:data_1795 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an atom." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0983, + ns1:data_2099 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a gene from EcoGene Database." ; + ns2:hasExactSynonym "EcoGene Accession", "EcoGene ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . -:data_1863 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1278 . - -:data_1870 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Haplotyping_Study_obj" ; + ns2:hasDefinition "A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1278 . + +ns1:data_1870 a owl:Class ; rdfs:label "Genus name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a genus of organism." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1881 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a genus of organism." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2118 . - -:data_2083 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Author" ; + ns2:hasDefinition "Information on the authors of a published work." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2118 . + +ns1:data_2083 a owl:Class ; rdfs:label "Alignment data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_1394 ; - oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular alignment of some type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_1394 ; + ns2:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular alignment of some type." ; + ns2:inSubset ns4: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 ; +ns1:data_2110 a owl:Class ; rdfs:label "Molecular property identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a molecular property." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2087 ], - :data_0976 . - -:data_2111 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a molecular property." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2087 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1597 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a codon usage table, for example a genetic code." ; + ns2:hasExactSynonym "Codon usage table identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1597 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1598 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1598 ], + ns1:data_0976 . -:data_2117 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1274 ], - :data_0976 . - -:data_2129 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a map of a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1274 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_3358 . - -:data_2139 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3358 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2985 . - -:data_2154 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Melting temperature" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2985 . + +ns1:data_2154 a owl:Class ; rdfs:label "Sequence name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Any arbitrary name of a molecular sequence." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1063, - :data_2099 . - -:data_2161 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any arbitrary name of a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1063, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of sequence similarities identified from word-matching or character comparison." ; + ns2:hasRelatedSynonym "Sequence conservation report" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0867, + ns1:data_2884 . -:data_2190 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing." ; + ns2:hasExactSynonym "Hash", "Hash code", "Hash sum", "Hash value" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_2253 a owl:Class ; +ns1:data_2253 a owl:Class ; rdfs:label "Data resource definition name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a data type." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1084, - :data_2099 . - -:data_2292 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a data type." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1084, + ns1:data_2099 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the GenBank sequence database." ; + ns2:hasExactSynonym "GenBank ID", "GenBank accession number", "GenBank identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1103 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1103 . -:data_2299 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1025, - :data_2099 . - -:data_2301 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasNarrowSynonym "Allele name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1025, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0846 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A specification of a chemical structure in SMILES format." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0846 . -:data_2309 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2108 . - -:data_2313 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a biological reaction from the SABIO-RK reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2085 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific carbohydrate 3D structure(s)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2085 . -:data_2314 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "NCBI GI number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2362 . -:data_2338 a owl:Class ; +ns1:data_2338 a owl:Class ; rdfs:label "Ontology identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Any arbitrary identifier of an ontology." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any arbitrary identifier of an ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0582 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0582 ], + ns1:data_0976 . -:data_2354 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3148 . - -:data_2382 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific RNA family or other group of classified RNA sequences." ; + ns2:hasExactSynonym "RNA family annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3148 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2531 ], - :data_0976 . - -:data_2564 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of genotype experiment metadata." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2531 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1006 . - -:data_2587 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Three letter amino acid identifier, e.g. GLY." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2596 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a blot from a Northern Blot." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2630 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a catalogue of biological resources." ; + ns2:hasExactSynonym "Catalogue identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2633 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a mobile genetic element." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2633 a owl:Class ; rdfs:label "Book ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Unique identifier of a book." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2663 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a book." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2663 a owl:Class ; rdfs:label "Carbohydrate identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a carbohydrate." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2313 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a carbohydrate." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2313 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1462 ], - :data_1086 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1462 ], + ns1:data_1086 . -:data_2711 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2530 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information concerning a genome as a whole." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2530 . -:data_2732 a owl:Class ; +ns1:data_2732 a owl:Class ; rdfs:label "Family name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a family of organism." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_2779 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a family of organism." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2790 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of stock from a catalogue of biological resources." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2812 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a two-dimensional (protein) gel." ; + ns2:hasExactSynonym "Gel identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2812 a owl:Class ; rdfs:label "Lipid identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a lipid." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2850 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a lipid." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2879 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2879 ], - :data_0982 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2850 ], + ns1:data_0982 . -:data_2849 a owl:Class ; +ns1:data_2849 a owl:Class ; rdfs:label "Abstract" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An abstract of a scientific article." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2526 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An abstract of a scientific article." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526 . -:data_2850 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0883 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a lipid structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0883 . -:data_2851 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1463 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the (3D) structure of a drug." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1463 . -:data_2852 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1463 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the (3D) structure of a toxin." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1463 . -:data_2870 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome." ; + ns2:hasExactSynonym "RH map" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1280 . -:data_2873 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1426 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Gene frequencies data that may be read during phylogenetic tree calculation." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1426 . -:data_2877 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1460 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1460 . -:data_2879 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2085 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific lipid 3D structure(s)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2085 . -:data_2898 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0996 . - -:data_2906 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a monosaccharide (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0996 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0988, - :data_2901 . - -:data_2912 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a peptide deposited in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0988, + ns1:data_2901 . + +ns1:data_2912 a owl:Class ; rdfs:label "Strain accession" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0963 ], - :data_2379, - :data_2908 . - -:data_2913 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0963 ], + ns1:data_2379, + ns1:data_2908 . + +ns1:data_2913 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:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869 . - -:data_2956 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning the properties or features of one or more protein secondary structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_3002 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser." ; + ns2:hasExactSynonym "Genome annotation track", "Genome track", "Genome-browser track", "Genomic track", "Sequence annotation track" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1255 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1255 . -:data_3115 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Annotation on the array itself used in a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc." ; - rdfs:subClassOf :data_2603 . + rdfs:subClassOf ns1:data_2603 . -:data_3134 a owl:Class ; +ns1: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)", + ns1:created_in "beta13" ; + ns2: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." ; + ns2:hasExactSynonym "Clone or EST (report)", "Gene transcript annotation", "Nucleic acid features (mRNA features)", "Transcript (report)", "mRNA (report)", "mRNA features" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1276 . -:data_3181 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.1" ; + ns2:hasDefinition "An informative report about a DNA sequence assembly." ; + ns2:hasExactSynonym "Assembly report" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This might include an overall quality assement 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 . + rdfs:subClassOf ns1:data_0867 . -:data_3236 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.2" ; + ns2:hasDefinition "The position of a cytogenetic band in a genome." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2012 . -:data_3425 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_3483 a owl:Class ; + ns1:created_in "1.5" ; + ns2:hasDefinition "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates." ; + ns2:hasExactSynonym "Carbohydrate data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_3488 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment." ; + ns2:hasExactSynonym "Spectra" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Spectral information for a molecule from a nuclear magnetic resonance experiment." ; + ns2:hasExactSynonym "NMR spectra" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3483 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3483 . -:data_3494 a owl:Class ; +ns1:data_3494 a owl:Class ; rdfs:label "DNA sequence" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "A DNA sequence." ; - oboInOwl:hasExactSynonym "DNA sequences" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2977 . - -:data_3495 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "A DNA sequence." ; + ns2:hasExactSynonym "DNA sequences" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2977 . + +ns1:data_3495 a owl:Class ; rdfs:label "RNA sequence" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "An RNA sequence." ; - oboInOwl:hasExactSynonym "RNA sequences" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2977 . - -:data_3498 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "An RNA sequence." ; + ns2:hasExactSynonym "RNA sequences" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2977 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects." ; + ns2:hasExactSynonym "Gene sequence variations" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], + ns1:data_0006 . -:data_3505 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2526 . + ns1:created_in "1.8" ; + ns2:hasDefinition "A list of publications such as scientic papers or books." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526 . -:data_3567 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_3669 a owl:Class ; + ns1:created_in "1.10" ; + ns2:hasDefinition "A report about a biosample." ; + ns2:hasExactSynonym "Biosample report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Some material that is used for educational (training) purposes." ; + ns2:hasNarrowSynonym "OER", "Open educational resource" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_3736 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.15" ; + ns2:hasDefinition "Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_3754 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasBroadSynonym "GO-term report" ; + ns2: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." ; + ns2:hasExactSynonym "GO-term enrichment report", "Gene ontology concept over-representation report", "Gene ontology enrichment report", "Gene ontology term enrichment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :data_3753 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:data_3753 . -:data_3768 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603 . - -:data_3786 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Groupings of expression profiles according to a clustering algorithm." ; + ns2:hasNarrowSynonym "Clustered gene expression profiles" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "1.16" ; + ns2:hasDefinition "A structured query, in form of a script, that defines a database search task." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_3805 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Structural 3D model (volume map) from electron microscopy." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_0883 . -:data_3806 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_0883 . -:example a owl:AnnotationProperty ; +ns1:example a owl:AnnotationProperty ; rdfs:label "Example" ; - oboOther: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 "concept_properties" ; + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_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 ; +ns1:format_1196 a owl:Class ; rdfs:label "SMILES" ; - :created_in "beta12orEarlier" ; - :documentation , + ns1:created_in "beta12orEarlier" ; + ns1:documentation , ; - oboInOwl:hasDbXref , + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2035, - :format_2330 . + ns2:hasDefinition "Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . -:format_1457 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server." ; + ns2:hasExactSynonym "Vienna RNA format", "Vienna RNA secondary structure format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2076, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2076, + ns1:format_2330 . -:format_1476 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1475, - :format_2330 . - -:format_1927 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of PDB database in PDB format." ; + ns2:hasExactSynonym "PDB format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1475, + ns1:format_2330 . + +ns1:format_1927 a owl:Class ; rdfs:label "EMBL format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBL entry format." ; - oboInOwl:hasExactSynonym "EMBL", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBL entry format." ; + ns2:hasExactSynonym "EMBL", "EMBL sequence format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2181, - :format_2206 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2181, + ns1:format_2206 . -:format_1931 a owl:Class ; +ns1:format_1931 a owl:Class ; rdfs:label "FASTQ-illumina" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTQ Illumina 1.3 short read format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTQ Illumina 1.3 short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1933 a owl:Class ; +ns1:format_1933 a owl:Class ; rdfs:label "FASTQ-solexa" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTQ Solexa/Illumina 1.0 short read format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTQ Solexa/Illumina 1.0 short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1936 a owl:Class ; +ns1:format_1936 a owl:Class ; rdfs:label "GenBank format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Genbank entry format." ; - oboInOwl:hasExactSynonym "GenBank" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2205, - :format_2206 . - -:format_1947 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Genbank entry format." ; + ns2:hasExactSynonym "GenBank" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2205, + ns1:format_2206 . + +ns1:format_1947 a owl:Class ; rdfs:label "GCG MSF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GCG MSF (multiple sequence file) file format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3486 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GCG MSF (multiple sequence file) file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3486 . -:format_1948 a owl:Class ; +ns1:format_1948 a owl:Class ; rdfs:label "nbrf/pir" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "NBRF/PIR entry sequence format." ; - oboInOwl:hasExactSynonym "nbrf", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "NBRF/PIR entry sequence format." ; + ns2:hasExactSynonym "nbrf", "pir" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_1949 a owl:Class ; +ns1:format_1949 a owl:Class ; rdfs:label "nexus-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Nexus/paup interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_1973 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Nexus/paup interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1:format_1973 a owl:Class ; rdfs:label "nexusnon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Nexus/paup non-interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_1974 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Nexus/paup non-interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2305 . - -:format_1978 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "General Feature Format (GFF) of sequence features." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2305 . + +ns1:format_1978 a owl:Class ; rdfs:label "DASGFF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DAS GFF (XML) feature format." ; - oboInOwl:hasExactSynonym "DASGFF feature", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DAS GFF (XML) feature format." ; + ns2:hasExactSynonym "DASGFF feature", "das feature" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2553 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2553 . -:format_1982 a owl:Class ; +ns1:format_1982 a owl:Class ; rdfs:label "ClustalW format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "ClustalW format for (aligned) sequences." ; - oboInOwl:hasExactSynonym "clustal" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1992 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "ClustalW format for (aligned) sequences." ; + ns2:hasExactSynonym "clustal" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1992 a owl:Class ; rdfs:label "meganon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mega non-interleaved format for (typically aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2923 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mega non-interleaved format for (typically aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2923 . -:format_1997 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" ; + ns2:hasDefinition "Phylip format for (aligned) sequences." ; + ns2:hasExactSynonym "PHYLIP", "PHYLIP interleaved format", "ph", "phy" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2924 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2924 . -:format_1998 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" ; + ns2:hasDefinition "Phylip non-interleaved format for (aligned) sequences." ; + ns2:hasExactSynonym "PHYLIP sequential format", "phylipnon" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2924 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2924 . -:format_2000 a owl:Class ; +ns1:format_2000 a owl:Class ; rdfs:label "selex" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "SELEX format for (aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_2005 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "SELEX format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1:format_2005 a owl:Class ; rdfs:label "TreeCon-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Treecon format for (aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_2017 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Treecon format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for an amino acid index." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1501 ], - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1501 ], + ns1:format_3033 . -:format_2021 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format of a report from text mining." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0972 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0972 ], + ns1:format_2350 . -:format_2027 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for reports on enzyme kinetics." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2024 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2024 ], + ns1:format_2350 . -:format_2038 a owl:Class ; +ns1:format_2038 a owl:Class ; rdfs:label "Phylogenetic discrete states format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of phylogenetic discrete states data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic discrete states data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1427 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1427 ], + ns1:format_2036 . -:format_2039 a owl:Class ; +ns1:format_2039 a owl:Class ; rdfs:label "Phylogenetic tree report (cliques) format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of phylogenetic cliques data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic cliques data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1428 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1428 ], + ns1:format_2036 . -:format_2049 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for phylogenetic tree distance data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1442 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1442 ], + ns1:format_2350 . -:format_2056 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3167 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for information about a microarray experimental per se (not the data generated from that experiment)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3167 . -:format_2060 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a map of (typically one) molecular sequence annotated with features." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1274 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1274 ], + ns1:format_2350 . -:format_2061 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2062 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report of general information about a specific protein." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0896 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0896 ], + ns1:format_2350 . -:format_2064 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a matrix of 3D-1D scores (amino acid environment probabilities)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1499 ], - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1499 ], + ns1:format_3033 . -:format_2067 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a matrix of genetic distances between molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0870 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0870 ], + ns1:format_2350 . -:format_2075 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3355 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for the emission and transition counts of a hidden Markov model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3354 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3354 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3355 ], + ns1:format_2350 . -:format_2095 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2096 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2097 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2187 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2547 . - -:format_2545 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text sequence format resembling uniprotkb entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2547 . + +ns1:format_2545 a owl:Class ; rdfs:label "FASTQ-like format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A format resembling FASTQ short read format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling FASTQ short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for non-standard FASTQ short read-like formats." ; - rdfs:subClassOf :format_2057 . + rdfs:subClassOf ns1:format_2057 . -:format_2553 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2548 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for a sequence feature table." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2548 . -:format_2558 a owl:Class ; +ns1:format_2558 a owl:Class ; rdfs:label "EMBL-like (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An XML format resembling EMBL entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An XML format resembling EMBL entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the any non-standard EMBL-like XML formats." ; - rdfs:subClassOf :format_2332, - :format_2543 . + rdfs:subClassOf ns1:format_2332, + ns1:format_2543 . -:format_2566 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_3158 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence without any unknown positions or ambiguity characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2054, - :format_2332 . - -:format_3287 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI." ; + ns2:hasExactSynonym "MIF" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2054, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3585 a owl:Class ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a metadata on an individual and their genetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "BED file format where each feature is described by chromosome, start, end, name, score, and strand." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6" ; - rdfs:subClassOf :format_3584 . + rdfs:subClassOf ns1:format_3584 . -:format_3590 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF)." ; + ns2:hasExactSynonym "h5" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3606 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Textual report format for sequence quality for reports from sequencing machines." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2048 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2048 ], + ns1:format_2350 . -:format_3620 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3507 . - -:format_3621 a owl:Class ; + ns1:created_in "1.11" ; + ns2:hasDefinition "MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3507 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . - -:format_3696 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Data format used by the SQLite database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . + +ns1:format_3696 a owl:Class ; rdfs:label "PS" ; - :created_in "1.13" ; - oboInOwl:hasDefinition "PostScript format" ; - oboInOwl:hasExactSynonym "PostScript" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3749 a owl:Class ; + ns1:created_in "1.13" ; + ns2:hasDefinition "PostScript format" ; + ns2:hasExactSynonym "PostScript" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1:format_3749 a owl:Class ; rdfs:label "JSON-LD" ; - :created_in "1.15" ; - :documentation ; - :file_extension "jsonld" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.15" ; + ns1:documentation ; + ns1:file_extension "jsonld" ; + ns1:media_type ; + ns2: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2376, - :format_3464, - :format_3748 . - -:format_3828 a owl:Class ; + ns2:hasDefinition "JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON." ; + ns2:hasExactSynonym "JavaScript Object Notation for Linked Data" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2376, + ns1:format_3464, + ns1:format_3748 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3110 ], - :format_2350 . - -:format_3841 a owl:Class ; + ns1:created_in "1.20" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for raw microarray data." ; + ns2:hasExactSynonym "Microarray data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3110 ], + ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3862 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Data format used in Natural Language Processing." ; + ns2:hasExactSynonym "Natural Language Processing format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3841 . + ns1:created_in "1.21" ; + ns2:hasDefinition "An NLP format used for annotated textual documents." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3841 . -:format_3865 a owl:Class ; +ns1:format_3865 a owl:Class ; rdfs:label "RNA annotation format" ; - :created_in "1.21" ; - oboInOwl:hasBroadSynonym "RNA data format" ; - oboInOwl:hasDefinition "A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data." ; - oboInOwl:hasNarrowSynonym "miRNA data format", + ns1:created_in "1.21" ; + ns2:hasBroadSynonym "RNA data format" ; + ns2:hasDefinition "A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data." ; + ns2:hasNarrowSynonym "miRNA data format", "microRNA data format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . -:operation_0244 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse flexibility and motion in protein structure." ; + ns2:hasExactSynonym "CG analysis", "MD analysis", "Protein Dynamics Analysis", "Trajectory analysis" ; - oboInOwl:hasNarrowSynonym "Nucleic Acid Dynamics Analysis", + ns2:hasNarrowSynonym "Nucleic Acid Dynamics Analysis", "Protein flexibility and motion analysis", "Protein flexibility prediction", "Protein motion prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0250 . -:operation_0246 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify structural domains in a protein structure from first principles (for example calculations on structural compactness)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0736 ], - :operation_2406, - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0736 ], + ns1:operation_2406, + ns1:operation_3092 . -:operation_0256 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the feature tables of two or more molecular sequences." ; + ns2:hasExactSynonym "Feature comparison", "Feature table comparison" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1270 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0849 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0849 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_2403, - :operation_2424 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1270 ], + ns1:operation_2403, + ns1:operation_2424 . -:operation_0276 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a network of protein interactions." ; + ns2:hasNarrowSynonym "Protein interaction network comparison" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2984 ], - :operation_2949, - :operation_3927 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2984 ], + ns1:operation_2949, + ns1:operation_3927 . -:operation_0284 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1597 ], - :operation_0286, - :operation_3429 . - -:operation_0285 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate codon usage statistics and create a codon usage table." ; + ns2:hasExactSynonym "Codon usage table construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1597 ], + ns1:operation_0286, + ns1:operation_3429 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0286, - :operation_2998 . - -:operation_0288 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more codon usage tables." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0286, + ns1:operation_2998 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2451 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find exact character or word matches between molecular sequences without full sequence alignment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2451 . -:operation_0296 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0863 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment." ; + ns2:hasExactSynonym "Sequence profile construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1354 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0258, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1354 ], + ns1:operation_0258, + ns1:operation_3429 . -:operation_0297 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate some type of structural (3D) profile or template from a structure or structure alignment." ; + ns2:hasExactSynonym "Structural profile construction", "Structural profile generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0889 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0886 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0886 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0883 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0883 ], - :operation_2480, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0889 ], + ns1:operation_2480, + ns1:operation_3429 . -:operation_0304 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2422 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_2422 ; + ns2:hasDefinition "Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotate a genome sequence with terms from a controlled vocabulary." ; + ns2:hasNarrowSynonym "Functional genome annotation", "Metagenome annotation", "Structural genome annotation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0361, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0361, + ns1:operation_3918 . -:operation_0391 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1546 ], - :operation_2950 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1546 ], + ns1:operation_2950 . -:operation_0393 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate clusters of contacting residues in protein structures." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1548 ], + ns1:operation_2950 . -:operation_0394 a owl:Class ; +ns1:operation_0394 a owl:Class ; rdfs:label "Hydrogen bond calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:HasHydrogenBonds", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:HasHydrogenBonds", "WHATIF:ShowHydrogenBonds", "WHATIF:ShowHydrogenBondsM" ; - oboInOwl:hasDefinition "Identify potential hydrogen bonds between amino acids and other groups." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasDefinition "Identify potential hydrogen bonds between amino acids and other groups." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1549 ], + ns1:operation_0248 . -:operation_0398 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1519 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the molecular weight of a protein sequence or fragments." ; + ns2:hasExactSynonym "Peptide mass calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1519 ], + ns1:operation_0250 . -:operation_0431 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:seeAlso :operation_0575 ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:seeAlso ns1:operation_0575 ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0415 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:operation_0415 . -:operation_0432 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA." ; + ns2:hasNarrowSynonym "Nucleosome exclusion sequence prediction", "Nucleosome formation sequence prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0436 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences." ; + ns2:hasExactSynonym "ORF finding", "ORF prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2454 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2454 . -:operation_0441 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Transcriptional regulatory element prediction (DNA-cis)", "Transcriptional regulatory element prediction (RNA-cis)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0438 . -:operation_0473 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0270 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Not sustainable to have protein type-specific concepts." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0270 ; + ns2:hasDefinition "Analyse G-protein coupled receptor proteins (GPCRs)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0270 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0480 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc." ; + ns2:hasExactSynonym "Protein modelling (side chains)" ; + ns2:hasNarrowSynonym "Antibody optimisation", "Antigen optimisation", "Antigen resurfacing", "Rotamer likelihood prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0477 . -:operation_0482 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques." ; + ns2:hasExactSynonym "Ligand-binding simulation" ; + ns2:hasNarrowSynonym "Protein-peptide docking" ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1461 ], - :operation_0478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_0478 . -:operation_0483 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection." ; + ns2:hasExactSynonym "Nucleic acid folding family identification", "Structured RNA prediction and optimisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1234 ], - :operation_3095 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1234 ], + ns1:operation_3095 . -:operation_0495 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Locally align two or more molecular sequences." ; + ns2:hasExactSynonym "Local sequence alignment", "Sequence alignment (local)" ; - oboInOwl:hasNarrowSynonym "Smith-Waterman" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Smith-Waterman" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Local alignment methods identify regions of local similarity." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0292 . + rdfs:subClassOf ns1:operation_0292 . -:operation_0496 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Globally align two or more molecular sequences." ; + ns2:hasExactSynonym "Global sequence alignment", "Sequence alignment (global)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Global alignment methods identify similarity across the entire length of the sequences." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0292 . + rdfs:subClassOf ns1:operation_0292 . -:operation_0503 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0295 . - -:operation_0504 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align (superimpose) exactly two molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (pairwise)" ; + ns2:hasNarrowSynonym "Pairwise protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0295 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align (superimpose) more than two molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (multiple)" ; + ns2:hasNarrowSynonym "Multiple protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes methods that use an existing alignment." ; - rdfs:subClassOf :operation_0295 . + rdfs:subClassOf ns1:operation_0295 . -:operation_0509 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Locally align (superimpose) two or more molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (local)" ; + ns2:hasNarrowSynonym "Local protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Local alignment methods identify regions of local similarity, common substructures etc." ; - rdfs:subClassOf :operation_0295 . + rdfs:subClassOf ns1:operation_0295 . -:operation_0510 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Globally align (superimpose) two or more molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (global)" ; + ns2:hasNarrowSynonym "Global protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Global alignment methods identify similarity across the entire structures." ; - rdfs:subClassOf :operation_0295 . + rdfs:subClassOf ns1:operation_0295 . -:operation_0523 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome." ; + ns2:hasExactSynonym "Sequence assembly (mapping assembly)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0310 . -:operation_0524 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence assembly by combining fragments without the aid of a reference sequence or genome." ; + ns2:hasExactSynonym "De Bruijn graph", "Sequence assembly (de-novo assembly)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "De-novo assemblers are much slower and more memory intensive than mapping assemblers." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0310 . + rdfs:subClassOf ns1:operation_0310 . -:operation_0525 a owl:Class ; +ns1:operation_0525 a owl:Class ; rdfs:label "Genome assembly" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; - oboInOwl:hasExactSynonym "Genomic assembly", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; + ns2:hasExactSynonym "Genomic assembly", "Sequence assembly (genome assembly)" ; - oboInOwl:hasNarrowSynonym "Breakend assembly" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Breakend assembly" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0310, - :operation_3918 . + rdfs:subClassOf ns1:operation_0310, + ns1:operation_3918 . -:operation_0575 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:seeAlso :operation_0431 ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Draw or visualise restriction maps in DNA sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:seeAlso ns1:operation_0431 ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1289 ], - :operation_0573 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1289 ], + ns1:operation_0573 . -:operation_1781 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a known network of gene regulation." ; + ns2:hasNarrowSynonym "Gene regulatory network comparison", "Gene regulatory network modelling", "Regulatory network comparison", "Regulatory network modelling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_2495, - :operation_3927 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:operation_2495, + ns1:operation_3927 . -:operation_2436 a owl:Class ; +ns1:operation_2436 a owl:Class ; rdfs:label "Gene-set enrichment analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc.", + ns1:created_in "beta12orEarlier" ; + ns2:comment "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." ; - 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", + ns2:hasBroadSynonym "Gene set testing" ; + ns2: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." ; + ns2:hasExactSynonym "Functional enrichment analysis", "GSEA", "Gene-set over-represenation analysis" ; - oboInOwl:hasNarrowSynonym "Gene set analysis" ; - oboInOwl:hasRelatedSynonym "GO-term enrichment", + ns2:hasNarrowSynonym "Gene set analysis" ; + ns2:hasRelatedSynonym "GO-term enrichment", "Gene Ontology concept enrichment", "Gene Ontology term enrichment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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.", "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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_2495, - :operation_3501 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3754 ], + ns1:operation_2495, + ns1:operation_3501 . -:operation_2437 a owl:Class ; +ns1:operation_2437 a owl:Class ; rdfs:label "Gene regulatory network prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict a network of gene regulation." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2423, - :operation_2495, - :operation_3927 . - -:operation_2487 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict a network of gene regulation." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2423, + ns1:operation_2495, + ns1:operation_3927 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare protein tertiary structures." ; + ns2:hasExactSynonym "Structure comparison (protein)" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2406, + ns1:operation_2483, + ns1:operation_2997 . -:operation_2501 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2945 ; + ns2:consider ns1:operation_2478, + ns1:operation_2481 ; + ns2:hasDefinition "Process (read and / or write) nucleic acid sequence or structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2502 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2945 ; + ns2:consider ns1:operation_2406, + ns1:operation_2479 ; + ns2:hasDefinition "Process (read and / or write) protein sequence or structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2518 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2481, - :operation_2483, - :operation_2998 . - -:operation_2929 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare nucleic acid tertiary structures." ; + ns2:hasExactSynonym "Structure comparison (nucleic acid)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2481, + ns1:operation_2483, + ns1:operation_2998 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification." ; + ns2:hasExactSynonym "PMF", "Peptide mass fingerprinting", "Protein fingerprinting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0398, - :operation_2930 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0398, + ns1:operation_2930 . -:operation_2930 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the physicochemical properties of two or more proteins (or reference data)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0897 ], - :operation_2997 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0897 ], + ns1:operation_2997 . -:operation_2996 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2480, - :operation_2990 . - -:operation_3023 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign molecular structure(s) to a group or category." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2480, + ns1:operation_2990 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2423 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2423 ; + ns2:hasDefinition "Predict, recognise, detect or identify some properties of proteins." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2423 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3024 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2423 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2423 ; + ns2:hasDefinition "Predict, recognise, detect or identify some properties of nucleic acids." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2423 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3081 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3096 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3096 . -:operation_3083 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2497 ; + ns2:consider ns1:operation_3925, + ns1:operation_3926 ; + ns2:hasDefinition "Render (visualise) a biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3094 a owl:Class ; +ns1:operation_3094 a owl:Class ; rdfs:label "Protein interaction network prediction" ; - :created_in "beta13" ; - oboInOwl:hasDefinition "Predict a network of protein interactions." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2949, - :operation_3927 . - -:operation_3195 a owl:Class ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Predict a network of protein interactions." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2949, + ns1:operation_3927 . + +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Detect errors in DNA sequences generated from sequencing projects)." ; + ns2:hasExactSynonym "Short read error correction", "Short-read error correction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3168 ], - :operation_2451 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3168 ], + ns1:operation_2451 . -:operation_3196 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3198 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Align short oligonucleotide sequences (reads) to a larger (genomic) sequence." ; + ns2:hasExactSynonym "Oligonucleotide alignment", "Oligonucleotide alignment construction", "Oligonucleotide alignment generation", "Oligonucleotide mapping", @@ -30390,3756 +30387,3756 @@ foaf:page a owl:AnnotationProperty . "Short read alignment", "Short read mapping", "Short sequence read mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2944, + ns1:operation_3921 . -:operation_3216 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Scaffold construction", "Scaffold generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0077 ], + ns1:operation_0310, + ns1:operation_3429 . -:operation_3223 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Differential expression analysis", "Differential gene analysis", "Differential gene expression analysis", "Differentially expressed gene identification" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0314 . -:operation_3228 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s)." ; + ns2:hasExactSynonym "Structural variation discovery" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3352 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "1.4" ; + ns2:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3357 a owl:Class ; +ns1: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", + ns1:comment_handle ns1:comment_handle ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Recognition of which format the given data is in." ; + ns2:hasExactSynonym "Format identification", "Format inference", "Format recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_input ; - owl:someValuesFrom :data_0006 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0006 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3358 ], - :operation_2409 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3358 ], + ns1:operation_2409 . -:operation_3431 a owl:Class ; +ns1: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", + ns1:created_in "1.6" ; + ns2:hasDefinition "Deposit some data in a database or some other type of repository or software system." ; + ns2:hasExactSynonym "Data deposition", "Data submission", "Database deposition", "Database submission", "Submission" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "For non-analytical operations, see the 'Processing' branch." ; - rdfs:subClassOf :operation_2409 . + rdfs:subClassOf ns1:operation_2409 . -:operation_3435 a owl:Class ; +ns1: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", + ns1:created_in "1.6" ; + ns2:hasDefinition "Standardize or normalize data by some statistical method." ; + ns2:hasNarrowSynonym "Normalisation", "Standardisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3457 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:operation_2480, + ns1:operation_3443 . -:operation_3480 a owl:Class ; +ns1:operation_3480 a owl:Class ; rdfs:label "Probabilistic data generation" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Generate some data from a choosen probibalistic model, possibly to evaluate algorithms." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3429 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Generate some data from a choosen probibalistic model, possibly to evaluate algorithms." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3429 . -:operation_3645 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3631 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3631 . -:operation_3649 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2428, - :operation_3646 . - -:operation_3907 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasBroadSynonym "Validation of peptide-spectrum matches" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2428, + ns1:operation_3646 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Extract structured information from unstructured (\"free\") or semi-structured textual documents." ; + ns2:hasExactSynonym "IE" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0306 . + rdfs:subClassOf ns1:operation_0306 . -:operation_3908 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0306 . + ns1:created_in "1.22" ; + ns2:hasDefinition "Retrieve resources from information systems matching a specific information need." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0306 . -:operation_3926 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2600 ], - :operation_0337, - :operation_3928 . - -:operation_3929 a owl:Class ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Render (visualise) a biological pathway." ; + ns2:hasExactSynonym "Pathway rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2600 ], + ns1:operation_0337, + ns1:operation_3928 . + +ns1:operation_3929 a owl:Class ; rdfs:label "Metabolic pathway prediction" ; - :created_in "1.24" ; - oboInOwl:hasDefinition "Predict a metabolic pathway." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2423, - :operation_3928 . - -:operation_4009 a owl:Class ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Predict a metabolic pathway." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2423, + ns1:operation_3928 . + +ns1: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", + ns1:created_in 1.25 ; + ns2: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." ; + ns2: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 . + rdfs:subClassOf ns1:operation_2430 . -:topic_0092 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Computer graphics" ; + ns2:hasDbXref "VT 1.2.5 Computer graphics" ; + ns2:hasDefinition "Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data." ; + ns2:hasExactSynonym "Data rendering" ; + ns2:hasHumanReadableId "Data_visualisation" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_0152 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Carbohydrates, typically including structural information." ; + ns2:hasHumanReadableId "Carbohydrates" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0081 . + rdfs:subClassOf ns1:topic_0081 . -:topic_0153 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Lipids and their structures." ; + ns2:hasExactSynonym "Lipidomics" ; + ns2:hasHumanReadableId "Lipids" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0081 . + rdfs:subClassOf ns1:topic_0081 . -:topic_0176 a owl:Class ; +ns1:topic_0176 a owl:Class ; rdfs:label "Molecular dynamics" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Molecular flexibility", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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 edam:edam, - edam:topics ; + ns2:hasDefinition "The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." ; + ns2:hasHumanReadableId "Molecular_dynamics" ; + ns2:hasNarrowSynonym "Protein dynamics" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0082, + ns1:topic_3892 . -:topic_0202 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.7 Pharmacology and pharmacy" ; + ns2:hasDefinition "The study of drugs and their effects or responses in living systems." ; + ns2:hasHumanReadableId "Pharmacology" ; + ns2:hasNarrowSynonym "Computational pharmacology", "Pharmacoinformatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_0639 a owl:Class ; +ns1:topic_0639 a owl:Class ; rdfs:label "Protein sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0640 a owl:Class ; +ns1:topic_0640 a owl:Class ; rdfs:label "Nucleic acid sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0748 a owl:Class ; +ns1:topic_0748 a owl:Class ; rdfs:label "Protein sites and features" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160, - :topic_0639 ; - oboInOwl:hasDefinition "The detection, identification and analysis of positional features in proteins, such as functional sites." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160, + ns1:topic_0639 ; + ns2:hasDefinition "The detection, identification and analysis of positional features in proteins, such as functional sites." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1770 a owl:Class ; +ns1:topic_1770 a owl:Class ; rdfs:label "Structure comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The comparison of two or more molecular structures, for example structure alignment and clustering." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0081 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The comparison of two or more molecular structures, for example structure alignment and clustering." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The application of information technology to chemistry in biological research environment." ; + ns2:hasExactSynonym "Chemical informatics", "Chemoinformatics" ; - oboInOwl:hasHumanReadableId "Cheminformatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Cheminformatics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_2820 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_3500 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.4 Biochemistry and molecular biology" ; + ns2:hasDefinition "The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life." ; + ns2:hasHumanReadableId "Molecular_biology" ; + ns2:hasNarrowSynonym "Biological processes" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3064 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.14 Developmental biology" ; + ns2:hasDefinition "How organisms grow and develop." ; + ns2:hasHumanReadableId "Developmental_biology" ; + ns2:hasNarrowSynonym "Development" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3065 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage." ; + ns2:hasHumanReadableId "Embryology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3064 . + rdfs:subClassOf ns1:topic_3064 . -:topic_3077 a owl:Class ; +ns1: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 edam:data, - edam:topics ; + ns1:created_in "beta13" ; + ns2:hasDefinition "The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means." ; + ns2:hasExactSynonym "Data collection" ; + ns2:inSubset ns4:data, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3174 a owl:Class ; +ns1:topic_3174 a owl:Class ; rdfs:label "Metagenomics" ; - :created_in "1.1" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Biome sequencing", + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Biome sequencing", "Community genomics", "Ecogenomics", "Environmental genomics", "Environmental omics", "Environmental sequencing" ; - oboInOwl:hasDefinition "The study of genetic material recovered from environmental samples, and associated environmental data." ; - oboInOwl:hasHumanReadableId "Metagenomics" ; - oboInOwl:hasNarrowSynonym "Biome sequencing", + ns2:hasDefinition "The study of genetic material recovered from environmental samples, and associated environmental data." ; + ns2:hasHumanReadableId "Metagenomics" ; + ns2:hasNarrowSynonym "Biome sequencing", "Shotgun metagenomics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D056186" ; - rdfs:subClassOf :topic_0610, - :topic_0622 . + rdfs:subClassOf ns1:topic_0610, + ns1:topic_0622 . -:topic_3175 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations." ; + ns2:hasExactSynonym "DNA structural variation", "Genomic structural variation" ; - oboInOwl:hasHumanReadableId "DNA_structural_variation" ; - oboInOwl:hasNarrowSynonym "Deletion", + ns2:hasHumanReadableId "DNA_structural_variation" ; + ns2:hasNarrowSynonym "Deletion", "Duplication", "Insertion", "Inversion", "Translocation" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0199, - :topic_0654 . + rdfs:subClassOf ns1:topic_0199, + ns1:topic_0654 . -:topic_3293 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences)." ; + ns2:hasHumanReadableId "Phylogenetics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D010802" ; - rdfs:subClassOf :topic_0080, - :topic_0084 . + rdfs:subClassOf ns1:topic_0080, + ns1:topic_0084 . -:topic_3308 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc." ; + ns2:hasHumanReadableId "Transcriptomics" ; + ns2:hasNarrowSynonym "Comparative transcriptomics", "Metatranscriptomics", "Transcriptome" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0203, - :topic_0622 . + rdfs:subClassOf ns1:topic_0203, + ns1:topic_0622 . -:topic_3318 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns2:hasDefinition "The study of matter, space and time, and related concepts such as energy and force." ; + ns2:hasHumanReadableId "Physics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3320 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons." ; + ns2:hasExactSynonym "Alternative splicing" ; + ns2:hasHumanReadableId "RNA_splicing" ; + ns2:hasNarrowSynonym "Splice sites" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0099, + ns1:topic_0203 . -:topic_3324 a owl:Class ; +ns1: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 transmissable disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions)." ; - oboInOwl:hasExactSynonym "Communicable disease", + ns1:created_in "1.3" ; + ns2:hasDbXref "VT 3.3.4 Infectious diseases" ; + ns2:hasDefinition "The branch of medicine that deals with the prevention, diagnosis and management of transmissable disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions)." ; + ns2:hasExactSynonym "Communicable disease", "Transmissable disease" ; - oboInOwl:hasHumanReadableId "Infectious_disease" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_0634 . + ns2:hasHumanReadableId "Infectious_disease" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_0634 . -:topic_3342 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Translational_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3384 a owl:Class ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Translational_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3384 a owl:Class ; rdfs:label "Medical imaging" ; - :created_in "1.4" ; - oboInOwl:hasDbXref "VT 3.2.13 Medical imaging", + ns1:created_in "1.4" ; + ns2: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", + ns2:hasDefinition "The use of imaging techniques for clinical purposes for medical research." ; + ns2:hasHumanReadableId "Medical_imaging" ; + ns2:hasNarrowSynonym "Neuroimaging", "Nuclear medicine", "Radiology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3386 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of animals and alternatives in experimental research." ; + ns2:hasExactSynonym "Animal experimentation", "Animal research", "Animal testing", "In vivo testing" ; - oboInOwl:hasHumanReadableId "Laboratory_animal_science" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Laboratory_animal_science" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3407 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Endocrinology_and_metabolism" ; - oboInOwl:hasNarrowSynonym "Endocrine disorders", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Endocrinology_and_metabolism" ; + ns2:hasNarrowSynonym "Endocrine disorders", "Endocrinology", "Metabolic disorders", "Metabolism" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3534 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasHumanReadableId "Protein_binding_sites" ; + ns2:hasNarrowSynonym "Enzyme active site", "Protein cleavage sites", "Protein functional sites", "Protein key folding sites", "Protein-nucleic acid binding sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3510 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3510 . -:topic_3542 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Secondary structure (predicted or real) of a protein, including super-secondary structure." ; + ns2:hasExactSynonym "Protein features (secondary structure)" ; + ns2:hasHumanReadableId "Protein_secondary_structure" ; + ns2:hasNarrowSynonym "Protein super-secondary structure" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_2814 . -:topic_3892 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.22" ; + ns2:hasDefinition "The study and simulation of molecular conformations using a computational model and computer simulations." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_3307 . -oboInOwl:hasAlternativeId a owl:AnnotationProperty . +ns2:hasAlternativeId a owl:AnnotationProperty . -oboInOwl:hasExactSynonym a owl:AnnotationProperty . +ns2:hasExactSynonym a owl:AnnotationProperty . -:data_0846 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . - -:data_0848 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A specification of a chemical structure." ; + ns2:hasExactSynonym "Chemical structure specification" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_2044 ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2044 ; + ns2:hasDefinition "A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_0865 a owl:Class ; rdfs:label "Sequence similarity score" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A value representing molecular sequence similarity." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A value representing molecular sequence similarity." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_0870 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:phylogenetic_distance_matrix" ; + ns2:hasDefinition "A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation." ; + ns2:hasExactSynonym "Phylogenetic distance matrix" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix." ; - rdfs:subClassOf :data_2855 . + rdfs:subClassOf ns1:data_2855 . -:data_0889 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some type of structural (3D) profile or template (representing a structure or structure alignment)." ; + ns2:hasExactSynonym "3D profile", "Structural (3D) profile" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_0006 . -:data_0893 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1916 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s))." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1916 . -:data_0919 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific chromosome." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc." ; - rdfs:subClassOf :data_2084 . + rdfs:subClassOf ns1:data_2084 . -:data_0949 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information, annotation or documentation concerning a workflow (but not the workflow itself)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_0970 a owl:Class ; +ns1:data_0970 a owl:Class ; rdfs:label "Citation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GCP_SimpleCitation", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Bibliographic data that uniquely identifies a scientific article, book or other published material." ; + ns2:hasExactSynonym "Bibliographic reference", "Reference" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2526 . -:data_0971 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A scientific text, typically a full text article from a scientific journal." ; + ns2:hasNarrowSynonym "Article text", "Scientific article" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2526, - :data_3671 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526, + ns1:data_3671 . -:data_0988 a owl:Class ; +ns1:data_0988 a owl:Class ; rdfs:label "Peptide identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a peptide chain." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0982 . - -:data_0993 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a peptide chain." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0982 . + +ns1:data_0993 a owl:Class ; rdfs:label "Drug identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a drug." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2851 ], - :data_1086 . - -:data_0994 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a drug." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2851 ], + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2016 ], - :data_1086 . - -:data_1010 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an amino acid." ; + ns2:hasExactSynonym "Residue identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2016 ], + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0989 . - -:data_1017 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name or other identifier of an enzyme or record from a database of enzymes." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0989 . + +ns1:data_1017 a owl:Class ; rdfs:label "Sequence range" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Specification of range(s) of sequence positions." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Specification of range(s) of sequence positions." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_1025 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0916 ], - :data_0976 . - -:data_1027 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDbXref "Moby:GeneAccessionList" ; + ns2:hasDefinition "An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0916 ], + ns1:data_0976 . + +ns1:data_1027 a owl:Class ; rdfs:label "Gene ID (NCBI)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:LocusID", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "An NCBI unique identifier of a gene." ; + ns2:hasExactSynonym "Entrez gene ID", "Gene identifier (Entrez)", "Gene identifier (NCBI)", "NCBI gene ID", "NCBI geneid" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1098, - :data_2091, - :data_2295 . - -:data_1039 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1098, + ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1038, - :data_2091 . - -:data_1064 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a protein domain (or other node) from the SCOP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1038, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0850 ], - :data_0976 . - -:data_1070 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a set of molecular sequence(s)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0850 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3035 . - -:data_1075 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3035 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0907 ], - :data_0976 . - -:data_1077 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein family." ; + ns2:hasExactSynonym "Protein secondary database record identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0907 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976, - :data_0989 . - -:data_1081 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a transcription factor (or a TF binding site)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976, + ns1:data_0989 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0920 ], - :data_0976 . - -:data_1084 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of genotypes and phenotypes." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0920 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_1085 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a data type definition from some provider." ; + ns2:hasExactSynonym "Data resource definition identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0950 ], - :data_0976 . - -:data_1089 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a mathematical model, typically an entry from a database." ; + ns2:hasExactSynonym "Biological model identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0950 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_1163 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "FB[a-zA-Z_0-9]{2}[0-9]{7}" ; + ns2:hasDefinition "Identifier of an object from the FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a data type from the MIRIAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0957 ], - :data_2253 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_2253 . -:data_1384 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0863 . - -:data_1399 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple protein sequences." ; + ns2:hasExactSynonym "Sequence alignment (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0863 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2137 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for gaps that are close together in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2137 . -:data_1442 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . - -:data_1448 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Distances, such as Branch Score distance, between two or more phylogenetic trees." ; + ns2:hasExactSynonym "Phylogenetic tree report (tree distances)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of integer or floating point numbers for nucleotide comparison." ; + ns2:hasExactSynonym "Nucleotide comparison matrix", "Nucleotide substitution matrix" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0874 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0874 . -:data_1449 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of integer or floating point numbers for amino acid comparison." ; + ns2:hasExactSynonym "Amino acid comparison matrix", "Amino acid substitution matrix" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0874, - :data_2016 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0874, + ns1:data_2016 . -:data_1463 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound." ; + ns2:hasRelatedSynonym "CHEBI:23367" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0154 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0154 ], + ns1:data_0883 . -:data_1479 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0886 . - -:data_1539 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of exactly two molecular tertiary (3D) structures." ; + ns2:hasExactSynonym "Pair structure alignment" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0886 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on the quality of a protein three-dimensional model." ; + ns2:hasExactSynonym "Protein property (structural quality)", "Protein report (structural quality)", "Protein structure report (quality evaluation)", "Protein structure validation report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc." ; - rdfs:subClassOf :data_1537 . + rdfs:subClassOf ns1:data_1537 . -:data_1696 a owl:Class ; +ns1:data_1696 a owl:Class ; rdfs:label "Drug report" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "A drug structure relationship map is report (typically a map diagram) of drug structure relationships." ; - oboInOwl:hasDefinition "A human-readable collection of information about a specific drug." ; - oboInOwl:hasExactSynonym "Drug annotation" ; - oboInOwl:hasNarrowSynonym "Drug structure relationship map" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0154 ], - :data_0962 . - -:data_1709 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:comment "A drug structure relationship map is report (typically a map diagram) of drug structure relationships." ; + ns2:hasDefinition "A human-readable collection of information about a specific drug." ; + ns2:hasExactSynonym "Drug annotation" ; + ns2:hasNarrowSynonym "Drug structure relationship map" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0154 ], + ns1:data_0962 . + +ns1:data_1709 a owl:Class ; rdfs:label "Protein secondary structure image" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Image of protein secondary structure." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3153 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of protein secondary structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3153 . -:data_1712 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of the structure of a small chemical compound." ; + ns2:hasExactSynonym "Small molecule structure image" ; + ns2:hasNarrowSynonym "Chemical structure sketch", "Small molecule sketch" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The molecular identifier and formula are typically included." ; - rdfs:subClassOf :data_1710 . + rdfs:subClassOf ns1:data_1710 . -:data_2127 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1598 ], - :data_0976 . - -:data_2162 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a genetic code." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1598 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1709 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1709 . -:data_2285 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2355 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for genetic elements in MIPS database." ; + ns2:hasExactSynonym "MIPS genetic element identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2354 ], - :data_0976 . - -:data_2366 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an RNA family, typically an entry from a RNA sequence classification database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2354 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1916 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more molecules." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1916 . -:data_2373 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2379 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869 . - -:data_2387 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869 . + +ns1:data_2387 a owl:Class ; rdfs:label "TAIR accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the TAIR database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2538 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2538 a owl:Class ; rdfs:label "Mutation identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a mutation." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2576 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a mutation." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2576 a owl:Class ; rdfs:label "Toxin identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a toxin." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2852 ], - :data_1086 . - -:data_2618 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a toxin." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2852 ], + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2632 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein modification catalogued in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2639 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PWY[a-zA-Z_0-9]{2}\\-[0-9]{3}" ; + ns2:hasDefinition "Identifier of an entry from the Saccharomyces genome database (SGD)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2655 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the PubChem database." ; + ns2:hasExactSynonym "PubChem identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2700 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique identifier of a type or group of cells." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1038, - :data_2091 . - -:data_2718 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a protein domain (or other node) from the CATH database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1038, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2119, - :data_2901 . - -:data_2727 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an oligonucleotide from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2119, + ns1:data_2901 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2749 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDbXref "Moby:GeneAccessionList" ; + ns2:hasDefinition "An identifier of a promoter of a gene that is catalogued in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2749 a owl:Class ; rdfs:label "Genome identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a particular genome." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2762 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a particular genome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence motif report", "Sequence profile report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :data_2048 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_2048 . -:data_2785 a owl:Class ; +ns1:data_2785 a owl:Class ; rdfs:label "Virus ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2908, - :data_2913 . - -:data_2795 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2908, + ns1:data_2913 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2897 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of an open reading frame." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2576 . - -:data_2902 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a toxin (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2576 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1084 . - -:data_2905 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a data definition (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1084 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2812, - :data_2901 . - -:data_2915 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of lipids." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2812, + ns1:data_2901 . + +ns1:data_2915 a owl:Class ; rdfs:label "Gramene identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of a Gramene database entry." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . - -:data_2975 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a Gramene database entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . + +ns1: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:hasExactSynonym "Nucleic acid raw sequence", + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_0848 ; + ns2:hasDefinition "A raw nucleic acid sequence." ; + ns2:hasExactSynonym "Nucleic acid raw sequence", "Nucleotide sequence (raw)", "Raw nucleic acid sequence", "Raw sequence (nucleic acid)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2977 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2977 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2978 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction." ; + ns2:hasExactSynonym "Enzyme kinetics annotation", "Reaction annotation" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_2979 a owl:Class ; +ns1:data_2979 a owl:Class ; rdfs:label "Peptide property" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concerning small peptides." ; - oboInOwl:hasExactSynonym "Peptide data" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2991 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning small peptides." ; + ns2:hasExactSynonym "Peptide data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . - -:data_3021 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc." ; + ns2:hasExactSynonym "Torsion angle data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns1:example "P43353|Q7M1G0|Q9C199|A5A6J6" ; + ns1: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}" ; + ns2:hasDefinition "Accession number of a UniProt (protein sequence) database entry." ; + ns2:hasExactSynonym "UniProt accession number", "UniProt entry accession", "UniProtKB accession", "UniProtKB accession number" ; - oboInOwl:hasNarrowSynonym "Swiss-Prot entry accession", + ns2:hasNarrowSynonym "Swiss-Prot entry accession", "TrEMBL entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . -:data_3025 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a concept in an ontology of biological or bioinformatics concepts and relations." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2858 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2858 ], + ns1:data_0976 . -:data_3035 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0883 ], - :data_0976 . - -:data_3036 a owl:Class ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a molecular tertiary structure, typically an entry from a structure database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0883 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2082 ], - :data_0976 . - -:data_3113 a owl:Class ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of an array of numerical values, such as a comparison matrix." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2082 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Annotation on a biological sample, for example experimental factors and their values." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This might include compound and dose in a dose response experiment." ; - rdfs:subClassOf :data_2337 . + rdfs:subClassOf ns1:data_2337 . -:data_3153 a owl:Class ; +ns1:data_3153 a owl:Class ; rdfs:label "Protein image" ; - :created_in "beta13" ; - oboInOwl:hasDefinition "An image of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta13" ; + ns2:hasDefinition "An image of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_3241 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . + ns1:created_in "1.2" ; + ns2:hasDefinition "Mathematical model of a network, that contains biochemical kinetics." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . -:data_3354 a owl:Class ; +ns1: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 edam:data ; + ns1:created_in "1.4" ; + ns2:hasDefinition "A HMM transition matrix contains the probabilities of switching from one HMM state to another." ; + ns2:hasExactSynonym "HMM transition matrix" ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:data_2082 . -:data_3355 a owl:Class ; +ns1: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 edam:data ; + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasExactSynonym "HMM emission matrix" ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:data_2082 . -:data_3358 a owl:Class ; +ns1: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 edam:data ; - rdfs:subClassOf :data_0976 . + ns1:created_in "1.4" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a data format." ; + ns2:inSubset ns4:data ; + rdfs:subClassOf ns1:data_0976 . -:data_3667 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1622 ], - :data_0976 . - -:data_3716 a owl:Class ; + ns1:created_in "1.12" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of disease." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1622 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_3717 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "A human-readable collection of information concerning biosafety data." ; + ns2:hasExactSynonym "Biosafety information" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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", + ns1:created_in "1.14" ; + ns2:hasDefinition "A report about any kind of isolation of biological material." ; + ns2:hasNarrowSynonym "Geographic location", "Isolation source" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_3870 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3869 . + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3869 . -:data_3872 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3869 . + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3869 . -:format_1210 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1207, - :format_2094 . - -:format_1333 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1207, + ns1:format_2094 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using some variant of BLAST." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This includes score data, alignment data and summary table." ; - rdfs:subClassOf :format_2066, - :format_2330 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1341 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2330 . - -:format_1370 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Results format for searches of the InterPro database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2072, - :format_2330 . - -:format_2006 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a hidden Markov model representation used by the HMMER package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2072, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0872 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0872 ], + ns1:format_2350 . -:format_2020 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0971 ], - :format_2350 . - -:format_2037 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a full-text scientific article." ; + ns2:hasExactSynonym "Literature format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0971 ], + ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic continuous quantitative character data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1426 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1426 ], + ns1:format_2036 . -:format_2065 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on the quality of a protein three-dimensional model." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1539 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1539 ], + ns1:format_2350 . -:format_2072 a owl:Class ; +ns1:format_2072 a owl:Class ; rdfs:label "Hidden Markov model format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of a hidden Markov model." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a hidden Markov model." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1364 ], - :format_2069 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1364 ], + ns1:format_2069 . -:format_2074 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format of a dirichlet distribution." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1347 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1347 ], + ns1:format_2350 . -:format_2077 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2078 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for secondary structure (predicted or real) of a protein molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used to specify range(s) of sequence positions." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1017 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1017 ], + ns1:format_2350 . -:format_2170 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for clusters of molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1235 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1235 ], + ns1:format_2350 . -:format_2172 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2170 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used for clusters of nucleotide sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2170 . -:format_2181 a owl:Class ; +ns1:format_2181 a owl:Class ; rdfs:label "EMBL-like (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A text format resembling EMBL entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling EMBL entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the many non-standard EMBL-like text formats." ; - rdfs:subClassOf :format_2330, - :format_2543 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2543 . -:format_2196 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2195 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A serialisation format conforming to the Open Biomedical Ontologies (OBO) model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2195 . -:format_2205 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling GenBank entry (plain text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the non-standard GenBank-like text formats." ; - rdfs:subClassOf :format_2330, - :format_2559 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2559 . -:format_2546 a owl:Class ; +ns1:format_2546 a owl:Class ; rdfs:label "FASTA-like" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A format resembling FASTA format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling FASTA format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the many non-standard FASTA-like formats." ; - rdfs:subClassOf :format_1919 . + rdfs:subClassOf ns1:format_1919 . -:format_2555 a owl:Class ; +ns1:format_2555 a owl:Class ; rdfs:label "Alignment format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for molecular sequence alignment information." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for molecular sequence alignment information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921 . -:format_2557 a owl:Class ; +ns1:format_2557 a owl:Class ; rdfs:label "Phylogenetic tree format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for a phylogenetic tree." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2006 . -:format_2559 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling GenBank entry (plain text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the non-standard GenBank-like formats." ; - rdfs:subClassOf :format_1919 . + rdfs:subClassOf ns1:format_1919 . -:format_2923 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_3003 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some variant of Mega format for (typically aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3166 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.0" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a report of information derived from a biological pathway or network." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2984 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2984 ], + ns1:format_2350 . -:format_3288 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3287 . - -:format_3584 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "The PED/MAP file describes data used by the Plink package." ; + ns2:hasExactSynonym "Plink PED/MAP" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3287 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3003 . -:format_3612 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Human ENCODE peak format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Format that covers both the broad peak format and narrow peak format from ENCODE." ; - rdfs:subClassOf :format_3585 . + rdfs:subClassOf ns1:format_3585 . -:format_3617 a owl:Class ; +ns1:format_3617 a owl:Class ; rdfs:label "Graph format" ; - :created_in "1.11" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Data format for graph data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3748 a owl:Class ; + ns1:created_in "1.11" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for graph data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1:format_3748 a owl:Class ; rdfs:label "Linked data format" ; - :citation , + ns1:citation , ; - :created_in "1.15" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDbXref ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3751 a owl:Class ; + ns1:created_in "1.15" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasRelatedSynonym "Semantic Web format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1:format_3751 a owl:Class ; rdfs:label "DSV" ; - :created_in "1.16" ; - oboInOwl:hasBroadSynonym "Tabular format" ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Tabular data represented as values in a text file delimited by some character." ; - oboInOwl:hasExactSynonym "Delimiter-separated values" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3824 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasBroadSynonym "Tabular format" ; + ns2:hasDbXref ; + ns2:hasDefinition "Tabular data represented as values in a text file delimited by some character." ; + ns2:hasExactSynonym "Delimiter-separated values" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1: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 "Nuclear magnetic resonance spectroscopy data format" ; - oboInOwl:hasNarrowSynonym "NMR peak assignment data", + ns1:created_in "1.20" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment." ; + ns2:hasExactSynonym "Nuclear magnetic resonance spectroscopy data format" ; + ns2:hasNarrowSynonym "NMR peak assignment data", "NMR processed data format", "NMR raw data format", "Processed NMR data format", "Raw NMR data format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3488 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3488 ], + ns1:format_2350 . -:format_3866 a owl:Class ; +ns1: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:hasNarrowSynonym "CG trajectory formats", + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "File format to store trajectory information for a 3D structure ." ; + ns2:hasNarrowSynonym "CG trajectory formats", "MD trajectory formats", "NA trajectory formats", "Protein trajectory formats" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3870 ], + ns1:format_2350 . -:has_function a owl:ObjectProperty ; +ns1:has_function a owl:ObjectProperty ; rdfs:label "has function" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A has_function B' defines for the subject A, that it has the object B as its function." ; + ns2:hasRelatedSynonym "OBO_REL:bearer_of" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:range ns1:operation_0004 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000306\"", "http://wsio.org/has_function", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#has-quality\"" ; - owl:inverseOf :is_function_of . + owl:inverseOf ns1:is_function_of . -:operation_0224 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3071 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search or query a data resource and retrieve entries and / or annotation." ; + ns2:hasExactSynonym "Database retrieval" ; + ns2:hasNarrowSynonym "Query" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3071 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0006 ], - :operation_2409 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0006 ], + ns1:operation_2409 . -:operation_0237 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find and/or analyse repeat sequences in (typically nucleotide) sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], + ns1:operation_2403 . -:operation_0239 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s)." ; + ns2:hasExactSynonym "Motif scanning", "Sequence signature detection", "Sequence signature recognition" ; - oboInOwl:hasNarrowSynonym "Motif detection", + ns2:hasNarrowSynonym "Motif detection", "Motif recognition", "Motif search", "Sequence motif detection", "Sequence motif search", "Sequence profile search" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0858 ], - :operation_0253, - :operation_2404 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0858 ], + ns1:operation_0253, + ns1:operation_2404 . -:operation_0247 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2406 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2406 . -:operation_0278 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc)." ; + ns2:hasNarrowSynonym "RNA shape prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0880 ], + ns1:operation_0415, + ns1:operation_0475, + ns1:operation_2439 . -:operation_0282 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Functional mapping", "Genetic cartography", "Genetic map construction", "Genetic map generation", "Linkage mapping" ; - oboInOwl:hasNarrowSynonym "QTL mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "QTL mapping" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1278 ], + ns1:operation_0283, + ns1:operation_2520 . -:operation_0283 a owl:Class ; +ns1:operation_0283 a owl:Class ; rdfs:label "Linkage analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse genetic linkage." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse genetic linkage." ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0927 ], + ns1:operation_2478 . -:operation_0291 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences." ; + ns2:hasExactSynonym "Sequence cluster construction", "Sequence cluster generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1235 ], + ns1:operation_2451, + ns1:operation_3429, + ns1:operation_3432 . -:operation_0294 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0292 . - -:operation_0298 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align molecular sequences using sequence and structural information." ; + ns2:hasExactSynonym "Sequence alignment (structure-based)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0292 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0300 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0292 ; + ns2:hasDefinition "Align sequence profiles (representing sequence alignments)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0300 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0299 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0295 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0295 ; + ns2:hasDefinition "Align structural (3D) profiles or templates (representing structures or structure alignments)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0295 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0303 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Domain prediction", "Fold prediction", "Protein domain prediction", "Protein fold prediction", "Protein fold recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2406, + ns1:operation_2479, + ns1:operation_2928, + ns1:operation_2997, + ns1:operation_3092 . -:operation_0314 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2: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", + ns2:hasNarrowSynonym "Non-coding RNA profiling", "Protein profiling", "RNA profiling", "mRNA profiling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Gene expression profiling generates some sort of gene expression profile, for example from microarray data." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2495 . + rdfs:subClassOf ns1:operation_2495 . -:operation_0315 a owl:Class ; +ns1:operation_0315 a owl:Class ; rdfs:label "Expression profile comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Comparison of expression profiles." ; - oboInOwl:hasNarrowSynonym "Gene expression comparison", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Comparison of expression profiles." ; + ns2:hasNarrowSynonym "Gene expression comparison", "Gene expression profile comparison" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495 . -:operation_0322 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2425, - :operation_2480 . - -:operation_0331 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: CorrectedPDBasXML" ; + ns2:hasDefinition "Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc." ; + ns2:hasNarrowSynonym "Protein model refinement" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2425, + ns1:operation_2480 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function." ; + ns2:hasExactSynonym "Variant functional prediction" ; + ns2:hasNarrowSynonym "Protein SNP mapping", "Protein mutation modelling", "Protein stability change prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0199 ], - :operation_2423 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_2423 . -:operation_0339 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_2421 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:operation_2421 . -:operation_0369 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Cut (remove) characters or a region from a molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0389 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc." ; + ns2:hasExactSynonym "Protein-nucleic acid binding site analysis" ; + ns2:hasNarrowSynonym "Protein-DNA interaction analysis", "Protein-RNA interaction analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_1777 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], + ns1:operation_1777 . -:operation_0416 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict antigenic determinant sites (epitopes) in protein sequences." ; + ns2:hasExactSynonym "Antibody epitope prediction", "Epitope prediction" ; - oboInOwl:hasNarrowSynonym "B cell epitope mapping", + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], + ns1:operation_2429, + ns1:operation_3092 . -:operation_0440 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods might recognize CG content, CpG islands, splice sites, polyA signals etc." ; - rdfs:subClassOf :operation_0438 . + rdfs:subClassOf ns1:operation_0438 . -:operation_0478 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model the structure of a protein in complex with a small molecule or another macromolecule." ; + ns2:hasExactSynonym "Docking simulation", "Macromolecular docking" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_2877 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2877 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1461 ], - :operation_1777, - :operation_2480 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_1777, + ns1:operation_2480 . -:operation_0484 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "SNP calling", "SNP discovery", "Single nucleotide polymorphism detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc." ; - rdfs:subClassOf :operation_3227 . + rdfs:subClassOf ns1:operation_3227 . -:operation_0491 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align exactly two molecular sequences." ; + ns2:hasExactSynonym "Pairwise alignment" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1381 ], + ns1:operation_0292 . -:operation_1844 a owl:Class ; +ns1:operation_1844 a owl:Class ; rdfs:label "Protein geometry validation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: ImproperQualityMax", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2: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." ; + ns2:hasNarrowSynonym "Ramachandran plot validation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0321 . + rdfs:subClassOf ns1:operation_0321 . -:operation_2419 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], - :operation_2423, - :operation_3095 . - -:operation_2425 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict oligonucleotide primers or probes." ; + ns2:hasExactSynonym "Primer and probe prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], + ns1:operation_2423, + ns1:operation_3095 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2464 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Refine or optimise some data model." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict protein-protein binding sites." ; + ns2:hasExactSynonym "Protein-protein binding site detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_2575 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_2575 . -:operation_2488 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare protein secondary structures." ; + ns2:hasExactSynonym "Protein secondary structure", "Secondary structure comparison (protein)" ; - oboInOwl:hasNarrowSynonym "Protein secondary structure alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2416, - :operation_2997 . + ns2:hasNarrowSynonym "Protein secondary structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2416, + ns1:operation_2997 . -:operation_2499 a owl:Class ; +ns1: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 edam:edam, - edam: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 ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences." ; + ns2:hasExactSynonym "Splicing model analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_2423, + ns1:operation_2426, + ns1:operation_2454 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise clustered expression data using a tree diagram." ; + ns2:hasExactSynonym "Dendrogram plotting", "Dendrograph plotting", "Dendrograph visualisation", "Expression data tree or dendrogram rendering", "Expression data tree visualisation" ; - oboInOwl:hasNarrowSynonym "Microarray 2-way dendrogram rendering", + ns2:hasNarrowSynonym "Microarray 2-way dendrogram rendering", "Microarray checks view rendering", "Microarray matrix tree plot rendering", "Microarray tree or dendrogram rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0571 . + rdfs:subClassOf ns1:operation_0571 . -:operation_2962 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate codon usage bias, e.g. generate a codon usage bias plot." ; + ns2:hasNarrowSynonym "Codon usage bias plotting" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2865 ], - :operation_0286 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2865 ], + ns1:operation_0286 . -:operation_3211 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Generate an index of a genome sequence." ; + ns2:hasNarrowSynonym "Burrows-Wheeler", "Genome indexing (Burrows-Wheeler)", "Genome indexing (suffix arrays)", "Suffix arrays" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3210 ], + ns1:operation_0227, + ns1:operation_3918 . -:operation_3437 a owl:Class ; +ns1:operation_3437 a owl:Class ; rdfs:label "Article comparison" ; - :created_in "1.6" ; - oboInOwl:hasDefinition "Compare two or more scientific articles." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "1.6" ; + ns2:hasDefinition "Compare two or more scientific articles." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3068 ], - :operation_2424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], + ns1:operation_2424 . -:operation_3465 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_0004 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:operation_0004 . -:operation_3501 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasExactSynonym "Enrichment", "Over-representation analysis" ; - oboInOwl:hasNarrowSynonym "Functional enrichment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Functional enrichment" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3753 ], + ns1:operation_2945 . -:operation_3634 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3630 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification without the use of chemical tags." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3630 . -:operation_3680 a owl:Class ; +ns1:operation_3680 a owl:Class ; rdfs:label "RNA-Seq analysis" ; - :created_in "1.13" ; - oboInOwl:hasDefinition "Analyze data from RNA-seq experiments." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495, - :operation_3921 . - -:operation_3778 a owl:Class ; + ns1:created_in "1.13" ; + ns2:hasDefinition "Analyze data from RNA-seq experiments." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495, + ns1:operation_3921 . + +ns1: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", + ns1:created_in "1.16" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Article annotation", "Literature annotation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3068 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_3671 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_3671 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3779 ], - :operation_0226 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3779 ], + ns1:operation_0226 . -:operation_3799 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_3925 a owl:Class ; + ns1:created_in "1.17" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Counting and measuring experimentally determined observations into quantities." ; + ns2:hasExactSynonym "Quantitation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Render (visualise) a network - typically a biological network of some sort." ; + ns2:hasExactSynonym "Network rendering" ; + ns2: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 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2600 ], + ns1:operation_0337, + ns1:operation_3927 . -:operation_3935 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Dimension reduction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3438 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3438 . -:topic_0091 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.6 Bioinformatics" ; + ns2:hasDefinition "The archival, curation, processing and analysis of complex biological data." ; + ns2:hasHumanReadableId "Bioinformatics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0605 . -:topic_0140 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export." ; + ns2:hasHumanReadableId "Protein_targeting_and_localisation" ; + ns2:hasNarrowSynonym "Protein localisation", "Protein sorting", "Protein targeting" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0108 . + rdfs:subClassOf ns1:topic_0108 . -:topic_0166 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules." ; + ns2:hasExactSynonym "Protein 3D motifs" ; + ns2:hasHumanReadableId "Protein_structural_motifs_and_surfaces" ; + ns2:hasNarrowSynonym "Protein structural features", "Protein structural motifs", "Protein surfaces", "Structural motifs" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_2814 . + rdfs:subClassOf ns1:topic_2814 . -:topic_0194 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Phylogenomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0080, - :topic_0622 . + rdfs:subClassOf ns1:topic_0080, + ns1:topic_0622 . -:topic_0218 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "NLP" ; + ns2:hasHumanReadableId "Natural_language_processing" ; + ns2:hasNarrowSynonym "BioNLP", "Literature mining", "Text analytics", "Text data mining", "Text mining" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , , ; - rdfs:subClassOf :topic_3068, - :topic_3316 . + rdfs:subClassOf ns1:topic_3068, + ns1:topic_3316 . -:topic_0219 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary." ; + ns2:hasHumanReadableId "Data_submission_annotation_and_curation" ; + ns2:hasNarrowSynonym "Data curation", "Data provenance", "Database curation" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3071 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3071 . -:topic_0780 a owl:Class ; +ns1:topic_0780 a owl:Class ; rdfs:label "Plant biology" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasBroadSynonym "Plant science" ; - oboInOwl:hasDbXref "VT 1.5.10 Botany", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Plant science" ; + ns2: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", + ns2:hasDefinition "Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation." ; + ns2:hasExactSynonym "Botany", "Plant", "Plant science", "Plants" ; - oboInOwl:hasHumanReadableId "Plant_biology" ; - oboInOwl:hasNarrowSynonym "Plant anatomy", + ns2:hasHumanReadableId "Plant_biology" ; + ns2:hasNarrowSynonym "Plant anatomy", "Plant cell biology", "Plant ecology", "Plant genetics", "Plant physiology" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The resource may be specific to a plant, a group of plants or all plants." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_0821 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc." ; + ns2:hasExactSynonym "Enzymology" ; + ns2:hasHumanReadableId "Enzymes" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078 . + rdfs:subClassOf ns1:topic_0078 . -:topic_2818 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_0621 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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_3336 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The discovery and design of drugs or potential drug compounds." ; + ns2:hasHumanReadableId "Drug_discovery" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3314, + ns1:topic_3376 . -:topic_3371 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3314 . - -:topic_3377 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of chemistry to create new compounds." ; + ns2:hasHumanReadableId "Synthetic_chemistry" ; + ns2:hasNarrowSynonym "Synthetic organic chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3314 . + +ns1: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:hasHumanReadableId "Safety_sciences" ; - oboInOwl:hasNarrowSynonym "Drug safety" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3376 . - -:topic_3500 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The safety (or lack) of drugs and other medical interventions." ; + ns2:hasHumanReadableId "Safety_sciences" ; + ns2:hasNarrowSynonym "Drug safety" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . + +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDbXref "VT 1.5.29 Zoology" ; + ns2:hasDefinition "Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation." ; + ns2:hasExactSynonym "Animal", "Animal biology", "Animals", "Metazoa" ; - oboInOwl:hasHumanReadableId "Zoology" ; - oboInOwl:hasNarrowSynonym "Animal genetics", + ns2:hasHumanReadableId "Zoology" ; + ns2:hasNarrowSynonym "Animal genetics", "Animal physiology", "Entomology" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The study of the animal kingdom." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:comment_handle a owl:AnnotationProperty . +ns1:comment_handle a owl:AnnotationProperty . -:data_0880 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:RNAStructML" ; + ns2:hasDefinition "An informative report of secondary structure (predicted or real) of an RNA molecule." ; + ns2:hasExactSynonym "Secondary structure (RNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:data_1465 . -:data_0888 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_0927 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about the linkage of alleles." ; + ns2:hasExactSynonym "Gene annotation (linkage)" ; + ns2:hasNarrowSynonym "Linkage disequilibrium (report)" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2084 . -:data_0958 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_0972 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information resulting from text mining." ; + ns2:hasExactSynonym "Text mining output" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2048, + ns1:data_2526 . -:data_0984 a owl:Class ; +ns1:data_0984 a owl:Class ; rdfs:label "Molecule name" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Name of a specific molecule." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0982, - :data_2099 . - -:data_0991 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name of a specific molecule." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0982, + ns1:data_2099 . + +ns1:data_0991 a owl:Class ; rdfs:label "Chemical registry number" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Unique registry number of a chemical compound." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2894 . - -:data_1006 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique registry number of a chemical compound." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0994 . - -:data_1015 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "String of one or more ASCII characters representing an amino acid." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0994 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3034 . - -:data_1038 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3034 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein structural domain." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1468 ], + ns1:data_0976 . -:data_1050 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_1063 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name (or part of a name) of a file (of any type)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2044 ], - :data_0976 . - -:data_1068 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of molecular sequence(s) or entries from a molecular sequence database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2044 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0872 ], - :data_0976 . - -:data_1082 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a phylogenetic tree for example from a phylogenetic tree database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0872 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2600 ], - :data_0976 . - -:data_1088 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of biological pathways or networks." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2600 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0971 ], - :data_0976 . - -:data_1093 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a scientific article." ; + ns2:hasExactSynonym "Article identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0971 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1063 . - -:data_1098 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A persistent, unique identifier of a molecular sequence database entry." ; + ns2:hasExactSynonym "Sequence accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1063 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2362 . - -:data_1103 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+" ; + ns2:hasDefinition "Accession number of a RefSeq database entry." ; + ns2:hasExactSynonym "RefSeq ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2362 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_1131 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1:data_1131 a owl:Class ; rdfs:label "Protein family name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a protein family." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1075, - :data_2099 . - -:data_1150 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a protein family." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1075, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3667 . - -:data_1176 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of an entry from a database of disease." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3667 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1233 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a concept from The Gene Ontology." ; + ns2:hasExactSynonym "GO concept identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0850 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0850 . -:data_1254 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2955 . - -:data_1397 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis." ; + ns2:hasExactSynonym "Sequence properties report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2955 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2137 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for opening a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2137 . -:data_1398 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2137 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for extending a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2137 . -:data_1426 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Continuous quantitative data that may be read during phylogenetic tree calculation." ; + ns2:hasExactSynonym "Phylogenetic continuous quantitative characters", "Quantitative traits" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0871 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0871 . -:data_1439 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis." ; + ns2:hasExactSynonym "Phylogenetic tree report (DNA substitution model)", "Sequence alignment report (DNA substitution model)", "Substitution model" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . -:data_1467 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1460 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1460 . -:data_1468 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the tertiary (3D) structure of a protein domain." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0736 ], - :data_1460 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0736 ], + ns1:data_1460 . -:data_1499 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0892 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0892 . -:data_1534 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An report on allergenicity / immunogenicity of peptides and proteins." ; + ns2:hasExactSynonym "Peptide immunogenicity", "Peptide immunogenicity report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0897 . -:data_1710 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of one or more molecular tertiary (3D) structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_1855 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2769 . - -:data_1883 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a clone (cloned molecular sequence) from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2769 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2093 . - -:data_1917 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:DescribedLink" ; + ns2:hasDefinition "A URI along with annotation describing the data found at the address." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2093 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2080 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data for an atom (in a molecular structure)." ; + ns2:hasExactSynonym "General atomic property" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report of hits from searching a database of some type." ; + ns2:hasExactSynonym "Database hits", "Search results" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_2101 a owl:Class ; +ns1:data_2101 a owl:Class ; rdfs:label "User ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An identifier of a software end-user (typically a person)." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2118 . - -:data_2118 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a software end-user (typically a person)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2118 . + +ns1:data_2118 a owl:Class ; rdfs:label "Person identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a software end-user (typically a person)." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2137 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a software end-user (typically a person)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for introducing or extending a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_2346 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef database." ; + ns2:hasExactSynonym "UniRef cluster id", "UniRef entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . -:data_2353 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning or derived from an ontology." ; + ns2:hasExactSynonym "Ontological data" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:data_0006 . -:data_2362 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0849 ], - :data_1093 . - -:data_2536 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of a nucleotide or protein sequence database entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0849 ], + ns1:data_1093 . + +ns1:data_2536 a owl:Class ; rdfs:label "Mass spectrometry data" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concerning a mass spectrometry measurement." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning a mass spectrometry measurement." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_2537 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw data from experimental methods for determining protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_3108 . -:data_2649 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2769 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2769 a owl:Class ; rdfs:label "Transcript ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a RNA transcript." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1276 ], - :data_2119, - :data_2901 . - -:data_2855 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a RNA transcript." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1276 ], + ns1:data_2119, + ns1:data_2901 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . -:data_2865 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0914 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0914 . -:data_2872 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2093 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2093 . -:data_2893 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2655 . - -:data_2903 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a type or group of cells (catalogued in a database)." ; + ns2:hasExactSynonym "Cell type ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2655 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2749 . - -:data_2911 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of a particular genome (in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2749 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1077, - :data_2907 . - -:data_2917 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of transcription factors or binding sites." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1077, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2109 . - -:data_2992 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of an entity from the ConsensusPathDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2109 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1710, - :data_3153 . - -:data_3034 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of protein structure." ; + ns2:hasExactSynonym "Structure image (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1710, + ns1:data_3153 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1255 ], - :data_0976 . - -:data_3110 a owl:Class ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of molecular sequence feature(s)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Such data as found in Affymetrix CEL or GPR files." ; - rdfs:subClassOf :data_3108, - :data_3117 . + rdfs:subClassOf ns1:data_3108, + ns1:data_3117 . -:data_3112 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns2:hasDefinition "The final processed (normalised) data for a set of hybridisations in a microarray experiment." ; + ns2:hasExactSynonym "Gene expression data matrix", "Normalised microarray data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This combines data from all hybridisations." ; - rdfs:subClassOf :data_2082, - :data_2603 . + rdfs:subClassOf ns1:data_2082, + ns1:data_2603 . -:data_3117 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Data concerning the hybridisations measured during a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603 . -:data_3148 a owl:Class ; +ns1: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)", + ns1:created_in "beta13" ; + ns2:hasBroadSynonym "Nucleic acid classification" ; + ns2: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." ; + ns2:hasExactSynonym "Gene annotation (homology information)", "Gene annotation (homology)", "Gene family annotation", "Gene homology (report)", "Homology information" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This includes reports on on gene homologues between species." ; - rdfs:subClassOf :data_2084 . + rdfs:subClassOf ns1:data_2084 . -:data_3210 a owl:Class ; +ns1:data_3210 a owl:Class ; rdfs:label "Genome index" ; - :created_in "1.1" ; - oboInOwl:hasDefinition "An index of a genome sequence." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.1" ; + ns2:hasDefinition "An index of a genome sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0955 . -:data_3732 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2099 . + ns1:created_in "1.15" ; + ns2:hasDefinition "Data concerning a sequencing experiment, that may be specified as an input to some tool." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2099 . -:data_3753 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data." ; + ns2:hasExactSynonym "Enrichment report", "Over-representation report" ; - oboInOwl:hasNarrowSynonym "Functional enrichment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns2:hasNarrowSynonym "Functional enrichment report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_3779 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2526, - :data_3671 . - -:data_3869 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526, + ns1:data_3671 . + +ns1:data_3869 a owl:Class ; rdfs:label "Simulation" ; - :created_in "1.22" ; - oboInOwl:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules. Tipically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "1.22" ; + ns2:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules. Tipically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:format_1208 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . -:format_1212 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence" ; - rdfs:subClassOf :format_1207 . + rdfs:subClassOf ns1:format_1207 . -:format_1213 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence" ; - rdfs:subClassOf :format_1207 . + rdfs:subClassOf ns1:format_1207 . -:format_1963 a owl:Class ; +ns1:format_1963 a owl:Class ; rdfs:label "UniProtKB format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "UniProtKB entry sequence format." ; - oboInOwl:hasExactSynonym "SwissProt format", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "UniProtKB entry sequence format." ; + ns2:hasExactSynonym "SwissProt format", "UniProt format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2187 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2187 . -:format_1975 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2305 . - -:format_2054 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns1:ontology_used ; + ns2:hasDbXref ; + ns2:hasDefinition "Generic Feature Format version 3 (GFF3) of sequence features." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2305 . + +ns1:format_2054 a owl:Class ; rdfs:label "Protein interaction format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasBroadSynonym "Molecular interaction format" ; - oboInOwl:hasDefinition "Format for molecular interaction data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0906 ], - :format_2350 . - -:format_2055 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Molecular interaction format" ; + ns2:hasDefinition "Format for molecular interaction data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0906 ], + ns1:format_2350 . + +ns1:format_2055 a owl:Class ; rdfs:label "Sequence assembly format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format for sequence assembly data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for sequence assembly data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0925 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0925 ], + ns1:format_2350 . -:format_2068 a owl:Class ; +ns1:format_2068 a owl:Class ; rdfs:label "Sequence motif format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format of a sequence motif." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a sequence motif." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1353 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1353 ], + ns1:format_2350 . -:format_2069 a owl:Class ; +ns1:format_2069 a owl:Class ; rdfs:label "Sequence profile format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format of a sequence profile." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a sequence profile." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1354 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1354 ], + ns1:format_2350 . -:format_2155 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2158 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for map of repeats in molecular (typically nucleotide) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2197 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for report on restriction enzyme recognition sites in nucleotide sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2195, - :format_2376 . - -:format_2204 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A serialisation format conforming to the Web Ontology Language (OWL) model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2195, + ns1:format_2376 . + +ns1:format_2204 a owl:Class ; rdfs:label "EMBL format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This is a placeholder for other more specific concepts. It should not normally be used for annotation." ; - rdfs:subClassOf :format_2558 . + rdfs:subClassOf ns1:format_2558 . -:format_2305 a owl:Class ; +ns1:format_2305 a owl:Class ; rdfs:label "GFF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GFF feature format (of indeterminate version)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2206, - :format_2330 . - -:format_2543 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GFF feature format (of indeterminate version)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2206, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling EMBL entry (plain text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the many non-standard EMBL-like formats." ; - rdfs:subClassOf :format_1919 . + rdfs:subClassOf ns1:format_1919 . -:format_2547 a owl:Class ; +ns1:format_2547 a owl:Class ; rdfs:label "uniprotkb-like format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A sequence format resembling uniprotkb entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1919, - :format_2548 . - -:format_3475 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A sequence format resembling uniprotkb entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1919, + ns1:format_2548 . + +ns1:format_3475 a owl:Class ; rdfs:label "TSV" ; - :created_in "1.7" ; - :file_extension "tsv|tab" ; - :media_type ; - oboInOwl:hasDbXRef , + ns1:created_in "1.7" ; + ns1:file_extension "tsv|tab" ; + ns1:media_type ; + ns2:hasDbXRef , ; - oboInOwl:hasDefinition "Tabular data represented as tab-separated values in a text file." ; - oboInOwl:hasExactSynonym "Tab-delimited", + ns2:hasDefinition "Tabular data represented as tab-separated values in a text file." ; + ns2:hasExactSynonym "Tab-delimited", "Tab-separated values" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3751 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3751 . -:format_3486 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_3706 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Some format based on the GCG format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for biodiversity data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3707 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3707 ], + ns1:format_2350 . -:format_3750 a owl:Class ; +ns1:format_3750 a owl:Class ; rdfs:label "YAML" ; - :created_in "1.15" ; - :documentation ; - :file_extension "yaml|yml" ; - oboInOwl:hasDbXref , + ns1:created_in "1.15" ; + ns1:documentation ; + ns1:file_extension "yaml|yml" ; + ns2: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language." ; + ns2:hasExactSynonym "YAML Ain't Markup Language" ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :format_1915 . + rdfs:subClassOf ns1:format_1915 . -:format_3884 a owl:Class ; +ns1: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." ; + ns1:created_in "1.22" ; + ns2: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. Tipically, 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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3872 ], + ns1:format_2350 . -:is_input_of a owl:ObjectProperty ; +ns1:is_input_of a owl:ObjectProperty ; rdfs:label "is input of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:participates_in" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:operation_0004 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000295\"", "http://wsio.org/is_input_of" . -:is_output_of a owl:ObjectProperty ; +ns1:is_output_of a owl:ObjectProperty ; rdfs:label "is output of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:participates_in" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:operation_0004 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000312\"", "http://wsio.org/is_output_of" . -:is_topic_of a owl:ObjectProperty ; +ns1:is_topic_of a owl:ObjectProperty ; rdfs:label "is topic of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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)." ; + ns2:hasRelatedSynonym "OBO_REL:quality_of" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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:domain ns1:topic_0003 ; rdfs:range [ a owl:Class ; - owl:unionOf ( :data_0006 :operation_0004 ) ] ; + owl:unionOf ( ns1:data_0006 ns1:operation_0004 ) ] ; rdfs:seeAlso "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" . -:operation_0227 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Generate an index of (typically a file of) biological data." ; + ns2:hasExactSynonym "Data indexing", "Database indexing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0955 ], - :operation_0004 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0955 ], + ns1:operation_0004 . -:operation_0233 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231, - :operation_3434 . - -:operation_0269 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Convert a molecular sequence from one type to another." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231, + ns1:operation_3434 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267, - :operation_0270 . - -:operation_0300 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267, + ns1:operation_0270 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment." ; + ns2:hasNarrowSynonym "Profile-profile alignment", "Profile-to-profile alignment", "Sequence-profile alignment", "Sequence-to-profile alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0292 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1354 ], + ns1:operation_0292 . -:operation_0361 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotate a molecular sequence record with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0849 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0849 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0849 ], - :operation_0226 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0849 ], + ns1:operation_0226 . -:operation_0400 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate pH-dependent properties from pKa calculations of a protein sequence." ; + ns2:hasExactSynonym "Protein pH-dependent property calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0123 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0123 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0897 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0897 ], + ns1:operation_0250 . -:operation_0443 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets." ; + ns2:hasExactSynonym "Functional RNA identification", "Transcriptional regulatory element prediction (trans)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_0438 . -:operation_0477 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Build a three-dimensional protein model based on known (for example homologs) structures." ; + ns2:hasExactSynonym "Comparative modelling", "Homology modelling", "Homology structure modelling", "Protein structure comparative modelling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2275 ], + ns1:operation_0474, + ns1:operation_2426 . -:operation_1850 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign cysteine bonding state and disulfide bond partners in protein structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0130 ], - :operation_0320 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_0320 . -:operation_2404 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403 . - -:operation_2416 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse molecular sequence motifs." ; + ns2:hasExactSynonym "Sequence motif processing" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2956 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse protein secondary structure data." ; + ns2:hasExactSynonym "Secondary structure analysis (protein)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], - :operation_2406 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2956 ], + ns1:operation_2406 . -:operation_2439 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Process (read and / or write) RNA secondary structure data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :operation_2481 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:operation_2481 . -:operation_2497 a owl:Class ; +ns1: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" ; - oboInOwl:consider :operation_3927, - :operation_3928 ; - oboInOwl:hasDefinition "Generate, process or analyse a biological pathway or network." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Generate, process or analyse a biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_2990 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2995 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403, - :operation_2990 . - -:operation_2998 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign molecular sequence(s) to a group or category." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403, + ns1:operation_2990 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more nucleic acids to identify similarities." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3192 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Cut (remove) the end from a molecular sequence." ; + ns2:hasExactSynonym "Trimming" ; + ns2:hasNarrowSynonym "Barcode sequence removal", "Trim ends", "Trim to reference", "Trim vector" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment """This includes ennd trimming @@ -34151,195 +34148,195 @@ Trim sequences (typically from an automated DNA sequencer) to remove the sequenc 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 . + rdfs:subClassOf ns1:operation_0369 . -:operation_3434 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_3443 a owl:Class ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Convert a data set from one form to another." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2:hasBroadSynonym "Image processing" ; + ns2:hasDefinition "The analysis of a image (typically a digital image) of some type in order to extract information from it." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3382 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3382 ], + ns1:operation_2945 . -:operation_3445 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2480 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Analysis of data from a diffraction experiment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2480 . -:operation_3630 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214, - :operation_3799 . - -:operation_3646 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Technique for determining the amount of proteins in a sample." ; + ns2:hasExactSynonym "Protein quantitation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214, + ns1:operation_3799 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2421, - :operation_3631 . - -:operation_3760 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2421, + ns1:operation_3631 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:topic_0099 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Operations concerning the handling and use of other tools." ; + ns2:hasNarrowSynonym "Endpoint management" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "RNA sequences and structures." ; + ns2:hasHumanReadableId "RNA" ; + ns2:hasNarrowSynonym "Small RNA" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0077 . + rdfs:subClassOf ns1:topic_0077 . -:topic_0610 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.15 Ecology" ; + ns2:hasDefinition "The ecological and environmental sciences and especially the application of information technology (ecoinformatics)." ; + ns2:hasHumanReadableId "Ecology" ; + ns2:hasNarrowSynonym "Computational ecology", "Ecoinformatics", "Ecological informatics", "Ecosystem science" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D004777" ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_0625 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Genotype and phenotype resources", "Genotype-phenotype", "Genotype-phenotype analysis" ; - oboInOwl:hasHumanReadableId "Genotype_and_phenotype" ; - oboInOwl:hasNarrowSynonym "Genotype", + ns2:hasHumanReadableId "Genotype_and_phenotype" ; + ns2:hasNarrowSynonym "Genotype", "Genotyping", "Phenotype", "Phenotyping" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3125 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns2:hasAlternativeId ns1:data_3125 ; + ns2:hasDefinition "Nucleic acids binding to some other molecule." ; + ns2:hasHumanReadableId "DNA_binding_sites" ; + ns2:hasNarrowSynonym "Matrix-attachment region", "Matrix/scaffold attachment region", "Nucleosome exclusion sequences", "Restriction sites", "Ribosome binding sites", "Scaffold-attachment region" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0654, + ns1:topic_3511 . -:topic_3295 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Epigenetics" ; + ns2:hasNarrowSynonym "DNA methylation", "Histone modification", "Methylation profiles" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3315 a owl:Class ; +ns1:topic_3315 a owl:Class ; rdfs:label "Mathematics" ; - :created_in "1.3" ; - oboInOwl:hasDbXref "VT 1.1.99 Other", + ns1:created_in "1.3" ; + ns2: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", + ns2:hasDefinition "The study of numbers (quantity) and other topics including structure, space, and change." ; + ns2:hasExactSynonym "Maths" ; + ns2:hasHumanReadableId "Mathematics" ; + ns2:hasNarrowSynonym "Dynamic systems", "Dynamical systems", "Dynymical systems theory", "Graph analytics", "Monte Carlo methods", "Multivariate analysis" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3511 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasHumanReadableId "Nucleic_acid_sites_features_and_motifs" ; + ns2:hasNarrowSynonym "Nucleic acid functional sites", "Nucleic acid sequence features", "Primer binding sites", "Sequence tagged sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0077, + ns1:topic_0160 . -:topic_3520 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDefinition "Proteomics experiments." ; + ns2:hasHumanReadableId "Proteomics_experiment" ; + ns2:hasNarrowSynonym "2D PAGE experiment", "DIA", "Data-independent acquisition", "MS", @@ -34348,905 +34345,905 @@ Trim sequences (typically from an automated DNA sequencer) to remove sequence-sp "Mass spectrometry experiments", "Northern blot experiment", "Spectrum demultiplexing" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3678 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns1:documentation ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions." ; + ns2:hasExactSynonym "Design of experiments", "Experimental design", "Studies" ; - oboInOwl:hasHumanReadableId "Experimental_design_and_studies" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_0003 . + ns2:hasHumanReadableId "Experimental_design_and_studies" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_0003 . -oboInOwl:hasBroadSynonym a owl:AnnotationProperty . +ns2:hasBroadSynonym a owl:AnnotationProperty . -:data_0871 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic character data from which a phylogenetic tree may be generated." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2523 . -:data_0920 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_0951 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Genotype/phenotype annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A value representing estimated statistical significance of some observed data; typically sequence database hits." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_0967 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning or derived from a concept from a biological ontology." ; + ns2:hasExactSynonym "Ontology class metadata", "Ontology term metadata" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2353 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2353 . -:data_0989 a owl:Class ; +ns1:data_0989 a owl:Class ; rdfs:label "Protein identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0896 ], - :data_0982 . - -:data_1009 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0896 ], + ns1:data_0982 . + +ns1:data_1009 a owl:Class ; rdfs:label "Protein name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0984, - :data_0989 . - -:data_1047 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a protein." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0984, + ns1:data_0989 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0842 . - -:data_1080 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A string of characters that name or otherwise identify a resource on the Internet." ; + ns2:hasExactSynonym "URIs" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0842 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_3111 ], - :data_0976 . - -:data_1114 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a report of gene expression (e.g. a gene expression profile) from a database." ; + ns2:hasExactSynonym "Gene expression profile identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1353 ], - :data_0976 . - -:data_1278 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a sequence motif, for example an entry from a motif database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1353 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:GeneticMap" ; + ns2: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." ; + ns2:hasExactSynonym "Linkage map" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1274 . -:data_1280 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1274 . -:data_1381 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns1:is_deprecation_candidate "true" ; + ns2:hasDefinition "Alignment of exactly two molecular sequences." ; + ns2:hasExactSynonym "Sequence alignment (pair)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_010068" ; - rdfs:subClassOf :data_0863 . + rdfs:subClassOf ns1:data_0863 . -:data_1459 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a nucleic acid tertiary (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:data_0883 . -:data_1461 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1460 . -:data_1465 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for an RNA tertiary (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :data_1459 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:data_1459 . -:data_1482 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0886 . - -:data_1598 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of nucleic acid tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (nucleic acid)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0886 . + +ns1:data_1598 a owl:Class ; rdfs:label "Genetic code" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A genetic code for an organism." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A genetic code for an organism." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A genetic code need not include detailed codon usage information." ; - rdfs:subClassOf :data_0914 . + rdfs:subClassOf ns1:data_0914 . -:data_1622 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific disease." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0634 ], + ns1:data_0920 . -:data_1869 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2530 ], - :data_0976 . - -:data_2016 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique identifier of a (group of) organisms." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2530 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2019 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids." ; + ns2:hasExactSynonym "Amino acid data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 exluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped." ; - oboInOwl:hasNarrowSynonym "Map attribute", + ns1:created_in "beta12orEarlier" ; + ns2: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 exluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped." ; + ns2:hasNarrowSynonym "Map attribute", "Map set data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], + ns1:data_0006 . -:data_2071 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1353 . - -:data_2104 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An amino acid sequence motif." ; + ns2:hasExactSynonym "Protein sequence motif" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1353 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2113 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an object from one of the BioCyc databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2113 a owl:Class ; rdfs:label "WormBase identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an object from the WormBase database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2109 . - -:data_2119 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an object from the WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2084 ], - :data_0982 . - -:data_2294 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of a nucleic acid molecule." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2084 ], + ns1:data_0982 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2316 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of an entry from a database of molecular sequence variation." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2316 a owl:Class ; rdfs:label "Cell line name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1046 . - -:data_2339 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1046 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_3025 . - -:data_2367 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a concept in an ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3025 . + +ns1:data_2367 a owl:Class ; rdfs:label "ASTD ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an object from the ASTD database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091, - :data_2109 . - -:data_2728 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an object from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091, + ns1:data_2109 . + +ns1:data_2728 a owl:Class ; rdfs:label "EST accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an EST sequence." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1855 . - -:data_2854 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an EST sequence." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1855 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1354, - :data_2082 . - -:data_2858 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "PSSM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1354, + ns1:data_2082 . + +ns1:data_2858 a owl:Class ; rdfs:label "Ontology concept" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A concept from a biological ontology." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A concept from a biological ontology." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This includes any fields from the concept definition such as concept name, definition, comments and so on." ; - rdfs:subClassOf :data_2353 . + rdfs:subClassOf ns1:data_2353 . -:data_2891 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1085 . - -:data_2900 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a mathematical model, typically an entry from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1085 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2663, - :data_2901 . - -:data_2914 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of carbohydrates." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2663, + ns1:data_2901 . + +ns1:data_2914 a owl:Class ; rdfs:label "Sequence features metadata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Metadata on sequence features." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Metadata on sequence features." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_2976 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDefinition "One or more protein sequences, possibly with associated annotation." ; + ns2:hasExactSynonym "Amino acid sequence", "Amino acid sequences", "Protein sequences" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation" ; - rdfs:subClassOf :data_2044 . + rdfs:subClassOf ns1:data_2044 . -:data_3671 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query." ; + ns2:hasExactSynonym "Free text" ; + ns2:hasNarrowSynonym "Plain text", "Textual search query" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2526 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526 . -:format_1206 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2094, - :format_2096 . - -:format_2014 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2094, + ns1:format_2096 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a sequence-profile alignment." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0858 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0858 ], + ns1:format_2350 . -:format_2031 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0916 ], - :format_2350 . - -:format_2076 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on a particular locus, gene, gene system or groups of genes." ; + ns2:hasExactSynonym "Gene features format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0916 ], + ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for secondary structure (predicted or real) of an RNA molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0880 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0880 ], + ns1:format_2350 . -:format_2094 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2195 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for molecular sequence with possible unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1:format_2195 a owl:Class ; rdfs:label "Ontology format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format used for ontologies." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for ontologies." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0582 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0582 ], + ns1:format_2350 . -:format_2548 a owl:Class ; +ns1:format_2548 a owl:Class ; rdfs:label "Sequence feature table format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format for a sequence feature table." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for a sequence feature table." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_1920 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:format_1920 . -:format_2567 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2094, - :format_2566 . - -:format_2924 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2094, + ns1:format_2566 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_3097 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some variant of Phylip format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0907 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0907 ], + ns1:format_2350 . -:format_3607 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2182, + ns1:format_2330, + ns1:format_3606 . -:format_3868 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3866 . - -:is_function_of a owl:ObjectProperty ; + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Textual file format to store trajectory information for a 3D structure ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3866 . + +ns1:is_function_of a owl:ObjectProperty ; rdfs:label "is function of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A is_function_of B' defines for the subject A, that it is a function of the object B." ; + ns2:hasNarrowSynonym "OBO_REL:function_of" ; + ns2:hasRelatedSynonym "OBO_REL:inheres_in" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:operation_0004 ; rdfs:seeAlso "http://wsio.org/is_function_of", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" . -:operation_0252 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Immunogen design" ; + ns2:hasDefinition "Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins." ; + ns2:hasExactSynonym "Antigenicity prediction", "Immunogenicity prediction" ; - oboInOwl:hasNarrowSynonym "B cell peptide immunogenicity prediction", + ns2:hasNarrowSynonym "B cell peptide immunogenicity prediction", "Hopp and Woods plotting", "MHC peptide immunogenicity prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_0804 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1534 ], - :operation_0250, - :operation_1777 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1534 ], + ns1:operation_0250, + ns1:operation_1777 . -:operation_0270 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0820 ], + ns1:operation_2945 . -:operation_0279 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Nucleic acid folding", "Nucleic acid folding modelling", "Nucleic acid folding prediction" ; - oboInOwl:hasNarrowSynonym "Nucleic acid folding energy calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Nucleic acid folding energy calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1596 ], - :operation_0475, - :operation_2426, - :operation_2481 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1596 ], + ns1:operation_0475, + ns1:operation_2426, + ns1:operation_2481 . -:operation_0320 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data." ; + ns2:hasNarrowSynonym "NOE assignment", "Structure calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1460 ], - :operation_2406, - :operation_2423 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2406, + ns1:operation_2423 . -:operation_0325 a owl:Class ; +ns1:operation_0325 a owl:Class ; rdfs:label "Phylogenetic tree comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Compare two or more phylogenetic trees." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0324, + ns1:operation_2424 . -:operation_0335 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Reformat a file of data (or equivalent entity in memory)." ; + ns2:hasExactSynonym "File format conversion", "File formatting", "File reformatting", "Format conversion", "Reformatting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_0338 a owl:Class ; +ns1: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. + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0857 ], + ns1:operation_2403, + ns1:operation_2421 . -:operation_0418 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect or predict signal peptides and signal peptide cleavage sites in protein sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0140 ], + ns1:operation_1777, + ns1:operation_3092 . -:operation_0420 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict or detect RNA and DNA-binding binding sites in protein sequences." ; + ns2: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 edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Zinc finger prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2575 . -:operation_0456 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA melting profile." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1583 ], + ns1:operation_0262, + ns1:operation_0337 . -:operation_0538 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation true ; + ns2:hasDefinition "Construct a phylogenetic tree from a specific type of data." ; + ns2:hasExactSynonym "Phylogenetic tree construction (data centric)", "Phylogenetic tree generation (data centric)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0323 . -:operation_0573 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Draw or visualise a DNA map." ; + ns2:hasExactSynonym "DNA map drawing", "Map rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1274 ], - :operation_0337 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1274 ], + ns1:operation_0337 . -:operation_2415 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Protein folding modelling" ; + ns2:hasNarrowSynonym "Protein folding simulation", "Protein folding site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0130 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1537 ], - :operation_2406, - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1537 ], + ns1:operation_2406, + ns1:operation_2426 . -:operation_2430 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2520 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Design a biological entity (typically a molecular sequence or structure) with specific properties." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a map of a DNA sequence annotated with positional or non-positional features of some type." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1274 ], - :operation_2429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1274 ], + ns1:operation_2429 . -:operation_2944 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Physical cartography" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1280 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :operation_2520 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1280 ], + ns1:operation_2520 . -:operation_3095 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Design (or predict) nucleic acid sequences with specific chemical or physical properties." ; + ns2:hasNarrowSynonym "Gene design" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2430, - :operation_2478 . + rdfs:subClassOf ns1:operation_2430, + ns1:operation_2478 . -:operation_3096 a owl:Class ; +ns1:operation_3096 a owl:Class ; rdfs:label "Editing" ; - :created_in "beta13" ; - oboInOwl:hasDefinition "Edit a data entity, either randomly or specifically." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Edit a data entity, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3218 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Raw sequence data quality control." ; + ns2:hasExactSynonym "Sequencing QC", "Sequencing quality assessment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems." ; - rdfs:subClassOf :operation_2428, - :operation_2478 . + rdfs:subClassOf ns1:operation_2428, + ns1:operation_2478 . -:operation_3227 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Variant mapping" ; + ns2:hasNarrowSynonym "Allele calling", "Exome variant detection", "Genome variant detection", "Germ line variant calling", "Mutation detection", "Somatic variant calling", "de novo mutation detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2478, + ns1:operation_3197 . -:operation_3351 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0166 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0166 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0123 ], - :operation_2480 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0123 ], + ns1:operation_2480 . -:operation_3432 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:topic_0123 a owl:Class ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_0078 . - -:topic_0601 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein." ; + ns2:hasExactSynonym "Protein physicochemistry" ; + ns2:hasHumanReadableId "Protein_properties" ; + ns2:hasNarrowSynonym "Protein hydropathy" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_0078 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein chemical modifications, e.g. post-translational modifications." ; + ns2:hasExactSynonym "PTMs", "Post-translational modifications", "Protein post-translational modification" ; - oboInOwl:hasHumanReadableId "Protein_modifications" ; - oboInOwl:hasNarrowSynonym "Post-translation modifications", + ns2:hasHumanReadableId "Protein_modifications" ; + ns2:hasNarrowSynonym "Post-translation modifications", "Protein chemical modifications", "Protein post-translational modifications" ; - oboInOwl:hasRelatedSynonym "GO:0006464", + ns2:hasRelatedSynonym "GO:0006464", "MOD:00000" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0108 . -:topic_0749 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasHumanReadableId "Transcription_factors_and_regulatory_sites" ; + ns2:hasNarrowSynonym "-10 signals", "-35 signals", "Attenuators", "CAAT signals", @@ -35263,94 +35260,94 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "Transcription factor binding sites", "Transcription factors", "Transcriptional regulatory sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0203, + ns1:topic_3125 . -:topic_0820 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane." ; + ns2:hasHumanReadableId "Membrane_and_lipoproteins" ; + ns2:hasNarrowSynonym "Lipoproteins", "Membrane proteins", "Transmembrane proteins" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_0078 . + rdfs:subClassOf ns1:topic_0078 . -:topic_2259 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The holistic modelling and analysis of complex biological systems and the interactions therein." ; + ns2:hasHumanReadableId "Systems_biology" ; + ns2:hasNarrowSynonym "Biological modelling", "Biological system modelling", "Systems modelling" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3070 . -:topic_2885 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "DNA polymorphism." ; + ns2:hasHumanReadableId "DNA_polymorphism" ; + ns2:hasNarrowSynonym "Microsatellites", "RFLP", "SNP", "Single nucleotide polymorphism", "VNTR", "Variable number of tandem repeat polymorphism", "snps" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0199, + ns1:topic_0654 . -:topic_3299 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.16 Evolutionary biology" ; + ns2:hasDefinition "The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity." ; + ns2:hasExactSynonym "Evolution" ; + ns2:hasHumanReadableId "Evolutionary_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3301 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.20 Microbiology" ; + ns2:hasDefinition "The biology of microorganisms." ; + ns2:hasHumanReadableId "Microbiology" ; + ns2:hasNarrowSynonym "Antimicrobial stewardship", "Medical microbiology", "Microbial genetics", "Microbial physiology", @@ -35358,199 +35355,199 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "Microbiological surveillance", "Molecular infection biology", "Molecular microbiology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3489 a owl:Class ; +ns1:topic_3489 a owl:Class ; rdfs:label "Database management" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "The general handling of data stored in digital archives such as databanks, databases proper, web portals and other data resources." ; - oboInOwl:hasExactSynonym "Database administration" ; - oboInOwl:hasHumanReadableId "Database_management" ; - oboInOwl:hasNarrowSynonym "Content management", + ns1:created_in "1.8" ; + ns2:hasDefinition "The general handling of data stored in digital archives such as databanks, databases proper, web portals and other data resources." ; + ns2:hasExactSynonym "Database administration" ; + ns2:hasHumanReadableId "Database_management" ; + ns2:hasNarrowSynonym "Content management", "Data maintenance", "Document management", "Document, record and content management", "File management", "Record management" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3656 a owl:Class ; +ns1: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:hasNarrowSynonym "" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "1.12" ; + ns2: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." ; + ns2:hasExactSynonym "Chromatin immunoprecipitation" ; + ns2:hasHumanReadableId "Immunoprecipitation_experiment" ; + ns2:hasNarrowSynonym "" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:data_0857 a owl:Class ; +ns1: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 "", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "", "Database hits (sequence)", "Sequence database hits", "Sequence database search results", "Sequence search hits" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2080 . -:data_0860 a owl:Class ; +ns1:data_0860 a owl:Class ; rdfs:label "Sequence signature data" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concering 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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concering concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_0006 . -:data_0968 a owl:Class ; +ns1:data_0968 a owl:Class ; rdfs:label "Keyword" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:BooleanQueryString", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Keyword(s) or phrase(s) used (typically) for text-searching purposes." ; + ns2:hasExactSynonym "Phrases", "Term" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Boolean operators (AND, OR and NOT) and wildcard characters may be allowed." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_1016 a owl:Class ; +ns1:data_1016 a owl:Class ; rdfs:label "Sequence position" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:_atom_site.id", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns2:hasDefinition "A position of one or more points (base or residue) in a sequence, or part of such a specification." ; + ns2:hasRelatedSynonym "SO:0000735" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_1035 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1078 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9\\.-]*" ; + ns2:hasDbXref "Moby_namespace:GeneDB" ; + ns2:hasDefinition "Identifier of a gene from the GeneDB database." ; + ns2:hasExactSynonym "GeneDB identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2531 ], - :data_0976 . - -:data_1112 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of microarray data." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2531 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1235 ], - :data_1064 . - -:data_1115 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a cluster of molecular sequence(s)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1235 ], + ns1:data_1064 . + +ns1:data_1115 a owl:Class ; rdfs:label "Sequence profile ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a sequence profile." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a sequence profile." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1354 ], + ns1:data_0976 . -:data_1190 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0977 . - -:data_1279 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a computer package, application, method or function." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0977 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1280 . -:data_1364 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . - -:data_1394 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "HMM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A simple floating point number defining the penalty for opening or extending a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_1597 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Table of codon usage data calculated from one or more nucleic acid sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_0914 . -:data_2012 a owl:Class ; +ns1:data_2012 a owl:Class ; rdfs:label "Sequence coordinates" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GCP_MapInterval", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:GCP_MapInterval", "Moby:GCP_MapPoint", "Moby:GCP_MapPosition", "Moby:GenePosition", @@ -35559,296 +35556,296 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "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", + ns2:hasDefinition "A position in a map (for example a genetic map), either a single position (point) or a region / interval." ; + ns2:hasExactSynonym "Locus", "Map position", "Sequence co-ordinates" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006, + ns1:data_1016, + ns1:data_1017 . -:data_2050 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2088 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "General data for a molecule." ; + ns2:hasExactSynonym "General molecular property" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0912 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Structural data for DNA base pairs or runs of bases, such as energy or angle data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0912 . -:data_2108 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2978 ], - :data_0976 . - -:data_2321 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a biological reaction from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2978 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1010, - :data_2907 . - -:data_2717 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique, persistent identifier of an enzyme." ; + ns2:hasExactSynonym "Enzyme accession" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1010, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "General annotation on an oligonucleotide probe, or a set of probes." ; + ns2:hasNarrowSynonym "Oligonucleotide probe sets annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], - :data_3115 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], + ns1:data_3115 . -:data_2908 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869 . - -:data_2909 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of annotation on a (group of) organisms (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869 . + +ns1:data_2909 a owl:Class ; rdfs:label "Organism name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:BriefOccurrenceRecord", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869, - :data_2099 . - -:data_2955 a owl:Class ; + ns2:hasDefinition "The name of an organism (or group of organisms)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_2985 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence-derived report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A thermodynamic or kinetic property of a nucleic acid molecule." ; + ns2:hasExactSynonym "Nucleic acid property (thermodynamic or kinetic)", "Nucleic acid thermodynamic property" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0912 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0912 . -:data_3111 a owl:Class ; +ns1: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)", + ns1:created_in "beta13" ; + ns2:hasDefinition "Data generated from processing and analysis of probe set data from a microarray experiment." ; + ns2:hasExactSynonym "Gene annotation (expression)", "Gene expression report", "Microarray probe set data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_3117 . -:data_3128 a owl:Class ; +ns1:data_3128 a owl:Class ; rdfs:label "Nucleic acid structure report" ; - :created_in "beta13" ; - oboInOwl: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." ; - 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)", + ns1:created_in "beta13" ; + ns2: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." ; + ns2:hasDefinition "A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures." ; + ns2:hasExactSynonym "Nucleic acid features (structure)" ; + ns2:hasNarrowSynonym "Quadruplexes (report)", "Stem loop (report)", "d-loop (report)" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2084, - :data_2085 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2084, + ns1:data_2085 . -:data_3707 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006, - :data_3736 . - -:format_1207 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Machine-readable biodiversity data." ; + ns2:hasExactSynonym "Biodiversity information" ; + ns2:hasNarrowSynonym "OTU table" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006, + ns1:data_3736 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . -:format_2030 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on a chemical compound." ; + ns2:hasExactSynonym "Chemical compound annotation format", "Chemical structure format", "Small molecule report format", "Small molecule structure format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0962 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0962 ], + ns1:format_2350 . -:format_2035 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Text format of a chemical formula." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0846 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0846 ], + ns1:format_2350 . -:format_2182 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling FASTQ short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for non-standard FASTQ short read-like formats." ; - rdfs:subClassOf :format_2330, - :format_2545 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2545 . -:format_2206 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2548 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for a sequence feature table." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2548 . -:format_2848 a owl:Class ; +ns1:format_2848 a owl:Class ; rdfs:label "Bibliographic reference format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format of a bibliographic reference." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0970 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a bibliographic reference." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2849 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2849 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0970 ], + ns1:format_2350 . -:format_2922 a owl:Class ; +ns1:format_2922 a owl:Class ; rdfs:label "markx0 variant" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Some variant of Pearson MARKX alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_3033 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some variant of Pearson MARKX alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a matrix (array) of numerical values." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2082 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2082 ], + ns1:format_2350 . -:format_3507 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3879 a owl:Class ; + ns1:created_in "1.8" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of documents including word processor, spreadsheet and presentation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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:hasNarrowSynonym "CG topology format", + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation." ; + ns2:hasNarrowSynonym "CG topology format", "MD topology format", "NA topology format", "Protein topology format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Many different file formats exist describing structural molecular topology. Tipically, 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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3872 ], + ns1:format_2350 . -:operation_0226 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_0089 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0582 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0582 ], - :operation_0004 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:operation_0004 . -:operation_0248 a owl:Class ; +ns1:operation_0248 a owl:Class ; rdfs:label "Residue interaction calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: SymShellFiveXML", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: SymShellFiveXML", "WHATIF: SymShellOneXML", "WHATIF: SymShellTenXML", "WHATIF: SymShellTwoXML", @@ -35856,172 +35853,172 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "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 edam:edam, - edam:operations ; + ns2:hasDefinition "Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0130 ], - :operation_0250 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_0250 . -:operation_0262 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0912 ], - :operation_3438 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0912 ], + ns1:operation_3438 . -:operation_0306 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Text analysis" ; + ns2:hasDefinition "Process and analyse text (typically scientific literature) to extract information from it." ; + ns2:hasExactSynonym "Literature mining", "Text analytics", "Text data mining" ; - oboInOwl:hasRelatedSynonym "Article analysis", + ns2:hasRelatedSynonym "Article analysis", "Literature analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_3671 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0218 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0218 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_3671 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0972 ], - :operation_2423, - :operation_2945 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0972 ], + ns1:operation_2423, + ns1:operation_2945 . -:operation_0319 a owl:Class ; +ns1:operation_0319 a owl:Class ; rdfs:label "Protein secondary structure assignment" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data." ; - oboInOwl:hasDefinition "Assign secondary structure from protein coordinate or experimental data." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], + ns1:created_in "beta12orEarlier" ; + ns2:comment "Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data." ; + ns2:hasDefinition "Assign secondary structure from protein coordinate or experimental data." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], - :operation_0320 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:operation_0320 . -:operation_0321 a owl:Class ; +ns1:operation_0321 a owl:Class ; rdfs:label "Protein structure validation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: CorrectedPDBasXML", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2:hasDefinition "Evaluate the quality or correctness a protein three-dimensional model." ; + ns2:hasExactSynonym "Protein model validation" ; + ns2:hasNarrowSynonym "Residue validation" ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_2275 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2275 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1539 ], - :operation_2406, - :operation_2428 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1539 ], + ns1:operation_2406, + ns1:operation_2428 . -:operation_0474 a owl:Class ; +ns1:operation_0474 a owl:Class ; rdfs:label "Protein structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein." ; - oboInOwl:hasDefinition "Predict tertiary structure (backbone and side-chain conformation) of protein sequences." ; - oboInOwl:hasNarrowSynonym "Protein folding pathway prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:comment "This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein." ; + ns2:hasDefinition "Predict tertiary structure (backbone and side-chain conformation) of protein sequences." ; + ns2:hasNarrowSynonym "Protein folding pathway prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1460 ], - :operation_2406, - :operation_2423, - :operation_2479 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2406, + ns1:operation_2423, + ns1:operation_2479 . -:operation_0475 a owl:Class ; +ns1:operation_0475 a owl:Class ; rdfs:label "Nucleic acid structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict structure of DNA or RNA." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict structure of DNA or RNA." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1459 ], + ns1:operation_2423, + ns1:operation_2481 . -:operation_0539 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation true ; + ns2:hasDefinition "Construct a phylogenetic tree using a specific method." ; + ns2:hasExactSynonym "Phylogenetic tree construction (method centric)", "Phylogenetic tree generation (method centric)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0323 . -:operation_3631 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Determination of peptide sequence from mass spectrum." ; + ns2:hasExactSynonym "Peptide-spectrum-matching" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3961 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3228 . - -:topic_0196 a owl:Class ; + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals." ; + ns2:hasExactSynonym "CNV detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3228 . + +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The assembly of fragments of a DNA sequence to reconstruct the original sequence." ; + ns2:hasHumanReadableId "Sequence_assembly" ; + ns2:hasNarrowSynonym "Assembly" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_0736 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein tertiary structural domains and folds in a protein or polypeptide chain." ; + ns2:hasHumanReadableId "Protein_folds_and_structural_domains" ; + ns2:hasNarrowSynonym "Intramembrane regions", "Protein domains", "Protein folds", "Protein membrane regions", @@ -36029,48 +36026,48 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "Protein topological domains", "Protein transmembrane regions", "Transmembrane regions" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_2814 . + rdfs:subClassOf ns1:topic_2814 . -:topic_2275 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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)." ; + ns2:hasHumanReadableId "Molecular_modelling" ; + ns2:hasNarrowSynonym "Comparative modelling", "Docking", "Homology modeling", "Homology modelling", "Molecular docking" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0082 . + rdfs:subClassOf ns1:topic_0082 . -:topic_3277 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Biological samples and specimens." ; + ns2:hasExactSynonym "Specimen collections" ; + ns2:hasHumanReadableId "Sample_collections" ; + ns2:hasNarrowSynonym "biosamples", "samples" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3344 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3344 . -:topic_3314 a owl:Class ; +ns1:topic_3314 a owl:Class ; rdfs:label "Chemistry" ; - :created_in "1.3" ; - oboInOwl:hasBroadSynonym "Chemical science", + ns1:created_in "1.3" ; + ns2:hasBroadSynonym "Chemical science", "Polymer science", "VT 1.7.10 Polymer science" ; - oboInOwl:hasDbXref "VT 1.7 Chemical sciences", + ns2:hasDbXref "VT 1.7 Chemical sciences", "VT 1.7.2 Chemistry", "VT 1.7.3 Colloid chemistry", "VT 1.7.5 Electrochemistry", @@ -36078,586 +36075,586 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "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", + ns2:hasDefinition "The composition and properties of matter, reactions, and the use of reactions to create new substances." ; + ns2:hasHumanReadableId "Chemistry" ; + ns2:hasNarrowSynonym "Inorganic chemistry", "Mathematical chemistry", "Nuclear chemistry", "Organic chemistry", "Physical chemistry" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3321 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The structure and function of genes at a molecular level." ; + ns2:hasHumanReadableId "Molecular_genetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053, - :topic_3307 . + rdfs:subClassOf ns1:topic_3053, + ns1:topic_3307 . -:topic_3510 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasHumanReadableId "Protein_sites_features_and_motifs" ; + ns2:hasNarrowSynonym "Protein sequence features", "Signal peptide cleavage sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0160 . -:data_0847 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR quantitative descriptor (name-value pair) of chemical structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2050 . -:data_0874 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison." ; + ns2:hasExactSynonym "Substitution matrix" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2082 . -:data_0912 a owl:Class ; +ns1:data_0912 a owl:Class ; rdfs:label "Nucleic acid property" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties." ; + ns2:hasDefinition "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule." ; + ns2:hasExactSynonym "Nucleic acid physicochemical property" ; + ns2:hasNarrowSynonym "GC-content", "Nucleic acid property (structural)", "Nucleic acid structural property" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_2087 . + rdfs:subClassOf ns1:data_2087 . -:data_0925 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An assembly of fragments of a (typically genomic) DNA sequence." ; + ns2:hasExactSynonym "Contigs", "SO:0000353" ; - oboInOwl:hasNarrowSynonym "SO:0001248" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "SO:0001248" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 "http://en.wikipedia.org/wiki/Sequence_assembly" ; - rdfs:subClassOf :data_1234 . + rdfs:subClassOf ns1:data_1234 . -:data_0955 a owl:Class ; +ns1:data_0955 a owl:Class ; rdfs:label "Data index" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An index of data of biological relevance." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An index of data of biological relevance." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3489 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3489 ], + ns1:data_0006 . -:data_1154 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_1249 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an object from one of the KEGG databases (excluding the GENES division)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_1353 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :data_0860 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_0860 . -:data_1743 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1917 . - -:data_2024 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Cartesian coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian coordinate" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1917 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning chemical reaction(s) catalysed by enzyme(s)." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0897, - :data_2978 . + rdfs:subClassOf ns1:data_0897, + ns1:data_2978 . -:data_2093 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A list of database accessions or identifiers are usually included." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_3424 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.5" ; + ns2:hasDefinition "Raw biological or biomedical image generated by some experimental technique." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_000081" ; - rdfs:subClassOf :data_2968 . + rdfs:subClassOf ns1:data_2968 . -:format_2036 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of raw (unplotted) phylogenetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0871 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0871 ], + ns1:format_2350 . -:format_2921 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of sequence variation annotation." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3498 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3498 ], + ns1:format_2350 . -:format_3326 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a data index of some type." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0955 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0955 ], + ns1:format_2350 . -:format_3464 a owl:Class ; +ns1:format_3464 a owl:Class ; rdfs:label "JSON" ; - :created_in "1.7" ; - :file_extension "json" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.7" ; + ns1:file_extension "json" ; + ns1:media_type ; + ns2: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1915, - :format_3750 . - -:format_3780 a owl:Class ; + ns2:hasDefinition "JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs." ; + ns2:hasExactSynonym "JavaScript Object Notation" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1915, + ns1:format_3750 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format of an annotated text, e.g. with recognised entities, concepts, and relations." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3779 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3779 ], + ns1:format_2350 . -:operation_0249 a owl:Class ; +ns1:operation_0249 a owl:Class ; rdfs:label "Protein geometry calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:CysteineTorsions", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Calculate, visualise or analyse phi/psi angles of a protein structure." ; + ns2:hasNarrowSynonym "Backbone torsion angle calculation", "Cysteine torsion angle calculation", "Tau angle calculation", "Torsion angle calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2991 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2991 ], + ns1:operation_0250 . -:operation_0253 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions." ; + ns2:hasExactSynonym "Sequence feature prediction", "Sequence feature recognition" ; - oboInOwl:hasNarrowSynonym "Motif database search" ; - oboInOwl:hasRelatedSynonym "SO:0000110" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Motif database search" ; + ns2:hasRelatedSynonym "SO:0000110" ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1255 ], - :operation_2403, - :operation_2423 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1255 ], + ns1:operation_2403, + ns1:operation_2423 . -:operation_0308 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Design or predict oligonucleotide primers for PCR and DNA amplification etc." ; + ns2:hasExactSynonym "PCR primer prediction", "Primer design" ; - oboInOwl:hasNarrowSynonym "PCR primer design (based on gene structure)", + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_input ; - owl:someValuesFrom :data_2977 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1240 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], - :operation_2419 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1240 ], + ns1:operation_2419 . -:operation_0346 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence." ; + ns2:hasNarrowSynonym "Sequence database search (by sequence)", "Structure database search (by sequence)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0338, - :operation_0339, - :operation_2451 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0338, + ns1:operation_0339, + ns1:operation_2451 . -:operation_2238 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Perform a statistical data operation of some type, e.g. calibration or validation." ; + ns2:hasExactSynonym "Significance testing", "Statistical analysis", "Statistical test", "Statistical testing" ; - oboInOwl:hasNarrowSynonym "Expectation maximisation", + ns2:hasNarrowSynonym "Expectation maximisation", "Gibbs sampling", "Hypothesis testing", "Omnibus test" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3438 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3438 . -:operation_2421 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Search" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2080 ], + ns1:operation_0224 . -:operation_2429 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2483 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts." ; + ns2:hasExactSynonym "Cartography" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1:operation_2483 a owl:Class ; rdfs:label "Structure comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Compare two or more molecular tertiary structures." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more molecular tertiary structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_2424, - :operation_2480 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:operation_2424, + ns1:operation_2480 . -:topic_0102 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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)." ; + ns2:hasHumanReadableId "Mapping" ; + ns2:hasNarrowSynonym "Genetic linkage", "Linkage", "Linkage mapping", "Synteny" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_0108 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The translation of mRNA into protein and subsequent protein processing in the cell." ; + ns2:hasHumanReadableId "Protein_expression" ; + ns2:hasNarrowSynonym "Translation" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078 . + rdfs:subClassOf ns1:topic_0078 . -:topic_0632 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence." ; + ns2:hasHumanReadableId "Probes_and_primers" ; + ns2:hasNarrowSynonym "Primer quality", "Primers", "Probes" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_0634 a owl:Class ; +ns1: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 , + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.6 Pathology" ; + ns2:hasDefinition "Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases." ; + ns2:hasExactSynonym , "Disease" ; - oboInOwl:hasHumanReadableId "Pathology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Pathology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3297 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production." ; + ns2:hasHumanReadableId "Biotechnology" ; + ns2:hasNarrowSynonym "Applied microbiology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3316 a owl:Class ; +ns1:topic_3316 a owl:Class ; rdfs:label "Computer science" ; - :created_in "1.3" ; - oboInOwl:hasDbXref "VT 1.2 Computer sciences", + ns1:created_in "1.3" ; + ns2: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", + ns2:hasDefinition "The theory and practical use of computer systems." ; + ns2:hasHumanReadableId "Computer_science" ; + ns2:hasNarrowSynonym "Cloud computing", "HPC", "High performance computing", "High-performance computing" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . +ns2:hasNarrowSynonym a owl:AnnotationProperty . -:data_0886 a owl:Class ; +ns1:data_0886 a owl:Class ; rdfs:label "Structure alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Alignment (superimposition) of molecular tertiary (3D) structures." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of molecular tertiary (3D) structures." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_1916 . -:data_0914 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences." ; + ns2:hasExactSynonym "Codon usage report" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_0006 . -:data_0982 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_1096 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of a molecule." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2976 ], - :data_1093 . - -:data_1234 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of a protein sequence database entry." ; + ns2:hasExactSynonym "Protein sequence accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2976 ], + ns1:data_1093 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0850 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0850 . -:data_1274 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map of (typically one) DNA sequence annotated with positional or non-positional features." ; + ns2:hasExactSynonym "DNA map" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], + ns1:data_0006 . -:data_1501 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2016, - :data_2082 . - -:data_1537 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2016, + ns1:data_2082 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains." ; + ns2:hasExactSynonym "Protein property (structural)", "Protein report (structure)", "Protein structural property", "Protein structure report (domain)", "Protein structure-derived report" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0896, - :data_2085 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0896, + ns1:data_2085 . -:data_1868 a owl:Class ; +ns1:data_1868 a owl:Class ; rdfs:label "Taxon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:BriefTaxonConcept", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:BriefTaxonConcept", "Moby:PotentialTaxon" ; - oboInOwl:hasDefinition "The name of a group of organisms belonging to the same taxonomic rank." ; - oboInOwl:hasExactSynonym "Taxonomic rank", + ns2:hasDefinition "The name of a group of organisms belonging to the same taxonomic rank." ; + ns2:hasExactSynonym "Taxonomic rank", "Taxonomy rank" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary." ; - rdfs:subClassOf :data_2909 . + rdfs:subClassOf ns1:data_2909 . -:data_2535 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequencing-based expression profile" ; + ns2:hasNarrowSynonym "Sequence tag profile (with gene assignment)" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0928 . -:data_2600 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network)." ; + ns2:hasExactSynonym "Network", "Pathway" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:data_0006 . -:data_2603 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification." ; + ns2:hasNarrowSynonym "Gene expression data", "Gene product profile", "Gene product quantification data", "Gene transcription profile", @@ -36674,322 +36671,322 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "Transcriptome quantification data", "mRNA profile", "mRNA quantification data" ; - oboInOwl:hasRelatedSynonym "Protein profile", + ns2:hasRelatedSynonym "Protein profile", "Protein quantification data", "Proteome profile", "Proteome quantification data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_0006 . -:data_2895 a owl:Class ; +ns1:data_2895 a owl:Class ; rdfs:label "Drug accession" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Accession of a drug." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0993 . - -:data_2901 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a drug." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0993 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0982 . - -:data_2970 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a specific molecule (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0982 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . - -:data_3106 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on protein properties concerning hydropathy." ; + ns2:hasExactSynonym "Protein hydropathy report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Metadata concerning the software, hardware or other aspects of a computer system." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:format_2561 a owl:Class ; +ns1:format_2561 a owl:Class ; rdfs:label "Sequence assembly format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Text format for sequence assembly data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2055 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for sequence assembly data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2055 . -:format_3867 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3866 . - -:operation_0236 a owl:Class ; + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Binary file format to store trajectory information for a 3D structure ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3866 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate character or word composition or frequency of a molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1261 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0157 ], - :operation_2403, - :operation_3438 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1261 ], + ns1:operation_2403, + ns1:operation_3438 . -:operation_0267 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict secondary structure of protein sequences." ; + ns2:hasExactSynonym "Secondary structure prediction (protein)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2416, + ns1:operation_2423, + ns1:operation_2479, + ns1:operation_3092 . -:operation_0323 a owl:Class ; +ns1:operation_0323 a owl:Class ; rdfs:label "Phylogenetic inference" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Construct a phylogenetic tree." ; - oboInOwl:hasExactSynonym "Phlyogenetic tree construction", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree." ; + ns2:hasExactSynonym "Phlyogenetic tree construction", "Phylogenetic reconstruction", "Phylogenetic tree generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_0080 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0872 ], - :operation_0324, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0872 ], + ns1:operation_0324, + ns1:operation_3429 . -:operation_0570 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise or render molecular 3D structure, for example a high-quality static picture or animation." ; + ns2:hasExactSynonym "Structure rendering" ; + ns2:hasNarrowSynonym "Protein secondary structure visualisation", "RNA secondary structure visualisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1710 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0883 ], - :operation_0337, - :operation_2480 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0883 ], + ns1:operation_0337, + ns1:operation_2480 . -:operation_2481 a owl:Class ; +ns1:operation_2481 a owl:Class ; rdfs:label "Nucleic acid structure analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse nucleic acid tertiary structural data." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse nucleic acid tertiary structural data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1459 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :operation_2480 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1459 ], + ns1:operation_2480 . -:operation_2575 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures." ; + ns2:hasExactSynonym "Protein binding site detection", "Protein binding site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_1777, - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], + ns1:operation_1777, + ns1:operation_3092 . -:operation_2928 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits." ; + ns2:hasExactSynonym "Alignment construction", "Alignment generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0004, - :operation_3429 . + rdfs:subClassOf ns1:operation_0004, + ns1:operation_3429 . -:operation_2997 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more proteins (or some aspect) to identify similarities." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3204 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . - -:operation_3635 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse cytosine methylation states in nucleic acid sequences." ; + ns2:hasExactSynonym "Methylation profile analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3630 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification based on the use of chemical tags." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3630 . -:operation_3921 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . + ns1:created_in "1.24" ; + ns2:hasDefinition "The processing of reads from high-throughput sequencing machines." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . -:topic_0077 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The processing and analysis of nucleic acid sequence, structural and other data." ; + ns2:hasExactSynonym "Nucleic acid bioinformatics", "Nucleic acid informatics" ; - oboInOwl:hasHumanReadableId "Nucleic_acids" ; - oboInOwl:hasNarrowSynonym "Nucleic acid physicochemistry", + ns2:hasHumanReadableId "Nucleic_acids" ; + ns2:hasNarrowSynonym "Nucleic acid physicochemistry", "Nucleic acid properties" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D017422", "http://purl.bioontology.org/ontology/MSH/D017423" ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:topic_0089 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Ontology_and_terminology" ; + ns2:hasNarrowSynonym "Applied ontology", "Ontologies", "Ontology", "Ontology relations", "Terminology", "Upper ontology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D002965" ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_0130 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Protein_folding_stability_and_design" ; + ns2:hasNarrowSynonym "Protein design", "Protein folding", "Protein residue interactions", "Protein stability", "Rational protein design" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_2814 . + rdfs:subClassOf ns1:topic_2814 . -:topic_0199 a owl:Class ; +ns1:topic_0199 a owl:Class ; rdfs:label "Genetic variation" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - oboInOwl:hasDefinition "Stable, naturally occuring 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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Stable, naturally occuring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." ; + ns2:hasExactSynonym "DNA variation" ; + ns2:hasHumanReadableId "Genetic_variation" ; + ns2:hasNarrowSynonym "Genomic variation", "Mutation", "Polymorphism", "Somatic mutations" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D014644" ; - rdfs:subClassOf :topic_3321 . + rdfs:subClassOf ns1:topic_3321 . -:topic_0605 a owl:Class ; +ns1:topic_0605 a owl:Class ; rdfs:label "Informatics" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 1.3 Information sciences", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "The study and practice of information processing and use of computer information systems." ; + ns2:hasExactSynonym "Information management", "Information science", "Knowledge management" ; - oboInOwl:hasHumanReadableId "Informatics" ; - oboInOwl:inSubset edam:topics ; + ns2:hasHumanReadableId "Informatics" ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_0654 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA sequences and structure, including processes such as methylation and replication." ; + ns2:hasExactSynonym "DNA analysis" ; + ns2:hasHumanReadableId "DNA" ; + ns2:hasNarrowSynonym "Ancient DNA", "Chromosomes" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The DNA sequences might be coding or non-coding sequences." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0077 . + rdfs:subClassOf ns1:topic_0077 . -:topic_0659 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA)." ; + ns2:hasHumanReadableId "Functional_regulatory_and_non-coding_RNA" ; + ns2:hasNarrowSynonym "Functional RNA", "Long ncRNA", "Long non-coding RNA", "Non-coding RNA", @@ -37009,298 +37006,298 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "siRNA", "snRNA", "snoRNA" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0099, + ns1:topic_0114 . -:topic_0804 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.3 Immunology" ; + ns2:hasDefinition "The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on." ; + ns2:hasHumanReadableId "Immunology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D007120", "http://purl.bioontology.org/ontology/MSH/D007125" ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3068 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The scientific literature, language processing, reference information, and documentation." ; + ns2:hasExactSynonym "Language", "Literature" ; - oboInOwl:hasHumanReadableId "Literature_and_language" ; - oboInOwl:hasNarrowSynonym "Bibliography", + ns2:hasHumanReadableId "Literature_and_language" ; + ns2:hasNarrowSynonym "Bibliography", "Citations", "Documentation", "References", "Scientific literature" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3391 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms." ; + ns2:hasHumanReadableId "Omics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:data_0582 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0089 ], - :data_2353 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:data_2353 . -:data_0990 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0984, - :data_1086 . - -:data_1097 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name of a chemical compound." ; + ns2:hasExactSynonym "Chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0984, + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2977 ], - :data_1093 . - -:data_1235 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of a nucleotide sequence database entry." ; + ns2:hasExactSynonym "Nucleotide sequence accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2977 ], + ns1:data_1093 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0623 ], + ns1:data_0850 . -:data_1354 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some type of statistical model representing a (typically multiple) sequence alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_010531" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :data_0860 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_0860 . -:data_1355 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report about a specific or conserved protein sequence pattern." ; + ns2:hasNarrowSynonym "InterPro entry", "Protein domain signature", "Protein family signature", "Protein region signature", "Protein repeat signature", "Protein site signature" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2762 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2762 . -:data_2085 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_2526 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Structure-derived report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasNarrowSynonym "Article data", "Scientific text data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], + ns1:data_0006 . -:data_2530 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:format_1475 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific organism." ; + ns2:hasExactSynonym "Organism annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3870 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of an entry (or part of an entry) from the PDB database." ; + ns2:hasExactSynonym "PDB entry format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3870 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0883 ], - :format_2033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0883 ], + ns1:format_2033 . -:format_2066 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on sequence hits and associated data from searching a sequence database." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0857 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0857 ], + ns1:format_2350 . -:format_2552 a owl:Class ; +ns1:format_2552 a owl:Class ; rdfs:label "Sequence record format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data format for a molecular sequence record." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1919 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for a molecular sequence record." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1919 . -:format_2556 a owl:Class ; +ns1:format_2556 a owl:Class ; rdfs:label "Phylogenetic tree format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Text format for a phylogenetic tree." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2006 . -:operation_0258 a owl:Class ; +ns1:operation_0258 a owl:Class ; rdfs:label "Sequence alignment analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse a molecular sequence alignment." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a molecular sequence alignment." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0863 ], - :operation_2403 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0863 ], + ns1:operation_2403 . -:operation_0438 a owl:Class ; +ns1:operation_0438 a owl:Class ; rdfs:label "Transcriptional regulatory element prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences." ; - oboInOwl:hasExactSynonym "Regulatory element prediction", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences." ; + ns2:hasExactSynonym "Regulatory element prediction", "Transcription regulatory element prediction" ; - oboInOwl:hasNarrowSynonym "Conserved transcription regulatory sequence identification", + ns2:hasNarrowSynonym "Conserved transcription regulatory sequence identification", "Translational regulatory element prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0749 ], + ns1:operation_2454 . -:operation_0571 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise microarray or other expression data." ; + ns2:hasExactSynonym "Expression data rendering" ; + ns2:hasNarrowSynonym "Gene expression data visualisation", "Microarray data rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_3117 ], - :operation_0337, - :operation_2495 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_3117 ], + ns1:operation_0337, + ns1:operation_2495 . -:operation_2428 a owl:Class ; +ns1:operation_2428 a owl:Class ; rdfs:label "Validation" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Validate some data." ; - oboInOwl:hasNarrowSynonym "Quality control" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2574 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Validate some data." ; + ns2:hasNarrowSynonym "Quality control" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0123 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0123 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2970 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2970 ], + ns1:operation_0250 . -:operation_2949 a owl:Class ; +ns1:operation_2949 a owl:Class ; rdfs:label "Protein-protein interaction analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Analyse the interactions of proteins with other proteins." ; - oboInOwl:hasExactSynonym "Protein interaction analysis" ; - oboInOwl:hasNarrowSynonym "Protein interaction raw data analysis", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Analyse the interactions of proteins with other proteins." ; + ns2:hasExactSynonym "Protein interaction analysis" ; + ns2:hasNarrowSynonym "Protein interaction raw data analysis", "Protein interaction simulation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], - :operation_1777 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_1777 . -:operation_2950 a owl:Class ; +ns1:operation_2950 a owl:Class ; rdfs:label "Residue distance calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: HETGroupNames", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: HETGroupNames", "WHATIF:HasMetalContacts", "WHATIF:HasMetalContactsPlus", "WHATIF:HasNegativeIonContacts", @@ -37310,66 +37307,66 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "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", + ns2:hasDefinition "Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations." ; + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0248 . -:operation_3438 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_3918 a owl:Class ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Mathematical determination of the value of something, typically a properly of a molecule." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1:operation_3918 a owl:Class ; rdfs:label "Genome analysis" ; - :created_in "1.24" ; - oboInOwl:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0622 ], - :operation_2478 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0622 ], + ns1:operation_2478 . -:operation_3928 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Generate, process or analyse a biological pathway." ; + ns2:hasExactSynonym "Biological pathway analysis" ; + ns2:hasNarrowSynonym "Biological pathway modelling", "Biological pathway prediction", "Functional pathway analysis", "Pathway comparison", "Pathway modelling", "Pathway prediction", "Pathway simulation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2259 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2259 ], + ns1:operation_2945 . -:topic_0154 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Small molecules of biological significance, typically archival, curation, processing and analysis of structural information." ; + ns2:hasHumanReadableId "Small_molecules" ; + ns2:hasNarrowSynonym "Amino acids", "Chemical structures", "Drug structures", "Drug targets", @@ -37381,74 +37378,74 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "Targets", "Toxins", "Toxins and targets" ; - oboInOwl:hasRelatedSynonym "CHEBI:23367" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasRelatedSynonym "CHEBI:23367" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0081 . -:topic_0623 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Genes, gene family or system" ; + ns2:hasHumanReadableId "Gene_and protein_families" ; + ns2:hasNarrowSynonym "Gene families", "Gene family", "Gene system", "Protein families", "Protein sequence classification" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_3321 . -:topic_2229 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.11 Cell biology" ; + ns2:hasDefinition "Cells, such as key genes and proteins involved in the cell cycle." ; + ns2:hasHumanReadableId "Cell_biology" ; + ns2:hasNarrowSynonym "Cells", "Cellular processes", "Protein subcellular localization" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3053 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of genes, genetic variation and heredity in living organisms." ; + ns2:hasHumanReadableId "Genetics" ; + ns2:hasNarrowSynonym "Genes", "Heredity" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D005823" ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3512 a owl:Class ; +ns1: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:hasExactSynonym "mRNA features" ; - oboInOwl:hasHumanReadableId "Gene_transcripts" ; - oboInOwl:hasNarrowSynonym "Coding RNA", + ns1:created_in "1.8" ; + ns2:hasDefinition "Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules." ; + ns2:hasExactSynonym "mRNA features" ; + ns2:hasHumanReadableId "Gene_transcripts" ; + ns2:hasNarrowSynonym "Coding RNA", "EST", "Exons", "Fusion transcripts", @@ -37460,245 +37457,245 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "Transit peptide coding sequence", "cDNA", "mRNA" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_0099, - :topic_0114 . + rdfs:subClassOf ns1:topic_0099, + ns1:topic_0114 . -oboInOwl:isCyclic a owl:AnnotationProperty . +ns2:isCyclic a owl:AnnotationProperty . -:data_0867 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report of molecular sequence alignment-derived data or metadata." ; + ns2:hasExactSynonym "Sequence alignment metadata" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2048 . -:data_0872 a owl:Class ; +ns1:data_0872 a owl:Class ; rdfs:label "Phylogenetic tree" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:Tree", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; + ns2: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." ; + ns2:hasExactSynonym "Phylogeny" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:data_2523 . -:data_0950 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A biological model represented in mathematical terms." ; + ns2:hasExactSynonym "Biological model" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3307 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3307 ], + ns1:data_0006 . -:data_1074 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0906 ], - :data_0976 . - -:data_1481 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Molecular interaction ID" ; + ns2:hasDefinition "Identifier of a report of protein interactions from a protein interaction database (typically)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0906 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0886 . - -:data_1583 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0886 . + +ns1:data_1583 a owl:Class ; rdfs:label "Nucleic acid melting profile" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "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.", + ns1:created_in "beta12orEarlier" ; + ns2:comment "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." ; - 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", + ns2:hasDefinition "Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating." ; + ns2:hasExactSynonym "Nucleic acid stability profile" ; + ns2:hasNarrowSynonym "Melting map", "Nucleic acid melting curve" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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." ; - rdfs:subClassOf :data_2985 . + rdfs:subClassOf ns1:data_2985 . -:data_1772 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A numerical value, that is some type of scored value arising for example from a prediction method." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_1916 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2084 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation true ; + ns2:hasDefinition "An alignment of molecular sequences, structures or profiles derived from them." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific nucleic acid molecules." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_2087 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2969 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule." ; + ns2:hasExactSynonym "Physicochemical property" ; + ns2:hasRelatedSynonym "SO:0000400" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2955, - :data_2968 . - -:data_2977 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of a molecular sequence, possibly with sequence features or properties shown." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2955, + ns1:data_2968 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "One or more nucleic acid sequences, possibly with associated annotation." ; + ns2:hasExactSynonym "Nucleic acid sequences", "Nucleotide sequence", "Nucleotide sequences" ; - oboInOwl:hasNarrowSynonym "DNA sequence" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "DNA sequence" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation" ; - rdfs:subClassOf :data_2044 . + rdfs:subClassOf ns1:data_2044 . -:format_1921 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for molecular sequence alignment information." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], + ns1:format_2350 . -:format_2032 a owl:Class ; +ns1:format_2032 a owl:Class ; rdfs:label "Workflow format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasBroadSynonym "Programming language", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Programming language", "Script format" ; - oboInOwl:hasDefinition "Format of a workflow." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . + ns2:hasDefinition "Format of a workflow." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . -:format_2376 a owl:Class ; +ns1:format_2376 a owl:Class ; rdfs:label "RDF format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "A serialisation format conforming to the Resource Description Framework (RDF) model." ; - oboInOwl:hasExactSynonym "Resource Description Framework format" ; - oboInOwl:hasRelatedSynonym "RDF", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref ; + ns2:hasDefinition "A serialisation format conforming to the Resource Description Framework (RDF) model." ; + ns2:hasExactSynonym "Resource Description Framework format" ; + ns2:hasRelatedSynonym "RDF", "Resource Description Framework" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1915, - :format_2195, - :format_3748 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1915, + ns1:format_2195, + ns1:format_3748 . -:format_3167 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.0" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for annotation on a laboratory experiment." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2531 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2531 ], + ns1:format_2350 . -:operation_0231 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403, - :operation_3096 . - -:operation_3197 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Edit or change a molecular sequence, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403, + ns1:operation_3096 . + +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model." ; + ns2:hasExactSynonym "Genetic variation annotation", "Sequence variation analysis", "Variant analysis" ; - oboInOwl:hasNarrowSynonym "Transcript variant analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Transcript variant analysis" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2945 . -:operation_3214 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse one or more spectra from mass spectrometry (or other) experiments." ; + ns2:hasExactSynonym "Mass spectrum analysis", "Spectrum analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:operation_2945 . -:topic_0157 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Sequence_composition_complexity_and_repeats" ; + ns2:hasNarrowSynonym "Low complexity sequences", "Nucleic acid repeats", "Protein repeats", "Protein sequence repeats", @@ -37706,310 +37703,310 @@ oboInOwl:isCyclic a owl:AnnotationProperty . "Sequence complexity", "Sequence composition", "Sequence repeats" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_1775 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of gene and protein function including the prediction of functional properties of a protein." ; + ns2:hasExactSynonym "Functional analysis" ; + ns2:hasHumanReadableId "Function_analysis" ; + ns2:hasNarrowSynonym "Protein function analysis", "Protein function prediction" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3307 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3307 . -:topic_3376 a owl:Class ; +ns1:topic_3376 a owl:Class ; rdfs:label "Medicines research and development" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Health care research", + ns1:created_in "1.4" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3344 . + ns2:hasDefinition "The discovery, development and approval of medicines." ; + ns2:hasExactSynonym "Drug discovery and development" ; + ns2:hasHumanReadableId "Medicines_research_and_development" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3344 . -oboInOwl:SubsetProperty a owl:AnnotationProperty . +ns2:SubsetProperty a owl:AnnotationProperty . -:format_2033 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2200 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a molecular tertiary structure." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1:format_2200 a owl:Class ; rdfs:label "FASTA-like (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A text format resembling FASTA format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling FASTA format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2546 . -:operation_0286 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table)." ; + ns2:hasExactSynonym "Codon usage data analysis", "Codon usage table analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1597 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1597 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1597 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0914 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0914 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1597 ], + ns1:operation_2478 . -:operation_0310 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence." ; + ns2:hasNarrowSynonym "Metagenomic assembly", "Sequence assembly editing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0925 ], + ns1:operation_2478 . -:operation_0324 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions." ; + ns2:hasExactSynonym "Phylogenetic tree analysis" ; + ns2:hasNarrowSynonym "Phylogenetic modelling" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:operation_2945 . -:operation_0564 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2044 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown." ; + ns2:hasExactSynonym "Sequence rendering" ; + ns2:hasNarrowSynonym "Sequence alignment visualisation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2969 ], - :operation_0337, - :operation_2403 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2969 ], + ns1:operation_0337, + ns1:operation_2403 . -:operation_1777 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the biological or biochemical role of a protein, or other aspects of a protein function." ; + ns2:hasExactSynonym "Protein function analysis", "Protein functional analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_2423, + ns1:operation_2945 . -:operation_2479 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a protein sequence (using methods that are only applicable to protein sequences)." ; + ns2:hasExactSynonym "Sequence analysis (protein)" ; + ns2:hasNarrowSynonym "Protein sequence alignment analysis", "Sequence alignment analysis (protein)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2976 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0078 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0078 ], - :operation_2403 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2976 ], + ns1:operation_2403 . -:topic_0082 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Structure_prediction" ; + ns2: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 edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0081 . -:topic_3344 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.3 Health sciences" ; + ns2:hasDefinition "Topic concerning biological science that is (typically) performed in the context of medicine." ; + ns2:hasExactSynonym "Biomedical sciences", "Health science" ; - oboInOwl:hasHumanReadableId "Biomedical_science" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Biomedical_science" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . +ns2:hasRelatedSynonym a owl:AnnotationProperty . -:data_0916 a owl:Class ; +ns1:data_0916 a owl:Class ; rdfs:label "Gene report" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GeneInfo", + ns1:created_in "beta12orEarlier" ; + ns2: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)", + ns2: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." ; + ns2: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 edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2084 . -:data_0962 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific chemical compound." ; + ns2:hasExactSynonym "Chemical compound annotation", "Chemical structure report", "Small molecule annotation" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0154 ], - :data_2085 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0154 ], + ns1:data_2085 . -:data_1086 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of chemicals." ; + ns2:hasExactSynonym "Chemical compound identifier", "Compound ID", "Small molecule identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0962 ], - :data_0982 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0962 ], + ns1:data_0982 . -:data_2523 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_2884 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2894 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph." ; + ns2:hasExactSynonym "Graph data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of chemicals." ; + ns2:hasExactSynonym "Chemical compound accession", "Small molecule accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086, - :data_2901 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086, + ns1:data_2901 . -:data_2984 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :data_2048 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:data_2048 . -:operation_0230 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a molecular sequence by some means." ; + ns2:hasNarrowSynonym "Sequence generation (nucleic acid)", "Sequence generation (protein)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403, - :operation_3429 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403, + ns1:operation_3429 . -:operation_0387 a owl:Class ; +ns1:operation_0387 a owl:Class ; rdfs:label "Molecular surface calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:AtomAccessibilityMolecular", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:AtomAccessibilityMolecular", "WHATIF:AtomAccessibilityMolecularPlus", "WHATIF:ResidueAccessibilityMolecular", "WHATIF:ResidueAccessibilitySolvent", @@ -38017,59 +38014,59 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "WHATIF:ResidueAccessibilityVacuumMolecular", "WHATIF:TotAccessibilityMolecular", "WHATIF:TotAccessibilitySolvent" ; - oboInOwl:hasDefinition "Calculate the molecular surface area in proteins and other macromolecules." ; - oboInOwl:hasNarrowSynonym "Protein atom surface calculation", + ns2:hasDefinition "Calculate the molecular surface area in proteins and other macromolecules." ; + ns2:hasNarrowSynonym "Protein atom surface calculation", "Protein residue surface calculation", "Protein surface and interior calculation", "Protein surface calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3351 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3351 . -:operation_2426 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2275 ], - :operation_0004 . - -:operation_3927 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; + ns2:hasNarrowSynonym "Mathematical modelling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2275 ], + ns1:operation_0004 . + +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Generate, process or analyse a biological network." ; + ns2:hasExactSynonym "Biological network analysis" ; + ns2:hasNarrowSynonym "Biological network modelling", "Biological network prediction", "Network comparison", "Network modelling", "Network prediction", "Network simulation", "Network topology simulation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2259 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2259 ], + ns1:operation_2945 . -:topic_3168 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes." ; + ns2:hasExactSynonym "DNA-Seq" ; + ns2:hasHumanReadableId "Sequencing" ; + ns2:hasNarrowSynonym "Chromosome walking", "Clone verification", "DNase-Seq", "High throughput sequencing", @@ -38082,18 +38079,18 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Primer walking", "Sanger sequencing", "Targeted next-generation sequencing panels" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D059014" ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:data_0858 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on the location of matches (\"hits\") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures." ; + ns2:hasNarrowSynonym "Profile-profile alignment", "Protein secondary database search results", "Search results (protein secondary database)", "Sequence motif hits", @@ -38102,369 +38099,369 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Sequence profile hits", "Sequence profile matches", "Sequence-profile alignment" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0860, + ns1:data_1916 . -:data_0966 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A term (name) from an ontology." ; + ns2:hasExactSynonym "Ontology class name", "Ontology terms" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0967 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0967 . -:data_1261 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report (typically a table) on character or word composition / frequency of a molecular sequence(s)." ; + ns2:hasExactSynonym "Sequence composition", "Sequence property (composition)" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1254 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1254 . -:format_1919 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a molecular sequence record." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0849 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0849 ], + ns1:format_2350 . -:format_2057 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for sequence trace data (i.e. including base call information)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0924 ], - :format_1919 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0924 ], + ns1:format_1919 . -:format_2920 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1381 ], - :format_1921 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1381 ], + ns1:format_1921 . -:operation_2454 a owl:Class ; +ns1:operation_2454 a owl:Class ; rdfs:label "Gene prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions." ; + ns2:hasDefinition "Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc." ; + ns2:hasExactSynonym "Gene calling", "Gene finding" ; - oboInOwl:hasNarrowSynonym "Whole gene prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Whole gene prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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_topic ; - owl:someValuesFrom :topic_0114 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0916 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0916 ], + ns1:operation_2478 . -:topic_0078 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Archival, processing and analysis of protein data, typically molecular sequence and structural data." ; + ns2:hasExactSynonym "Protein bioinformatics", "Protein informatics" ; - oboInOwl:hasHumanReadableId "Proteins" ; - oboInOwl:hasNarrowSynonym "Protein databases" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "Proteins" ; + ns2:hasNarrowSynonym "Protein databases" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D020539" ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:topic_0084 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of evolutionary relationships amongst organisms." ; + ns2:hasHumanReadableId "Phylogeny" ; + ns2:hasNarrowSynonym "Phylogenetic clocks", "Phylogenetic dating", "Phylogenetic simulation", "Phylogenetic stratigraphy", "Phylogeny reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3299, + ns1:topic_3307 . -:topic_2814 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId "http://edamontology.org/topic_3040" ; + ns2:hasDefinition "Protein secondary or tertiary structural data and/or associated annotation." ; + ns2:hasExactSynonym "Protein structure" ; + ns2:hasHumanReadableId "Protein_structure_analysis" ; + ns2:hasNarrowSynonym "Protein tertiary structure" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078, - :topic_0081 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0081 . -:topic_3071 a owl:Class ; +ns1:topic_3071 a owl:Class ; rdfs:label "Biological databases" ; - :created_in "beta13" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Databases" ; - oboInOwl:hasDbXref "VT 1.3.1 Data management" ; - oboInOwl:hasDefinition "The development and use of architectures, policies, practices and procedures for management of data." ; - oboInOwl:hasExactSynonym "Data management", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Databases" ; + ns2:hasDbXref "VT 1.3.1 Data management" ; + ns2:hasDefinition "The development and use of architectures, policies, practices and procedures for management of data." ; + ns2:hasExactSynonym "Data management", "Databases and information systems", "Information systems" ; - oboInOwl:hasHumanReadableId "Biological_databases" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Biological_databases" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D030541" ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_3307 a owl:Class ; +ns1:topic_3307 a owl:Class ; rdfs:label "Computational biology" ; - :created_in "1.3" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 1.5.12 Computational biology", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems." ; + ns2:hasHumanReadableId "Computational_biology" ; + ns2:hasNarrowSynonym "Biomathematics", "Mathematical biology", "Theoretical biology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:comment "This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology)." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3361 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The procedures used to conduct an experiment." ; + ns2:hasExactSynonym "Experimental techniques", "Lab method", "Lab techniques", "Laboratory method" ; - oboInOwl:hasHumanReadableId "Laboratory_techniques" ; - oboInOwl:hasNarrowSynonym "Experiments", + ns2:hasHumanReadableId "Laboratory_techniques" ; + ns2:hasNarrowSynonym "Experiments", "Laboratory experiments" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_0003 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_0003 . -:topic_3382 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The visual representation of an object." ; + ns2:hasHumanReadableId "Imaging" ; + ns2:hasNarrowSynonym "Diffraction experiment", "Microscopy", "Microscopy imaging", "Optical super resolution microscopy", "Photonic force microscopy", "Photonic microscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:data_0896 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_0943 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Gene product annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Spectra from mass spectrometry." ; + ns2:hasExactSynonym "Mass spectrometry spectra" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_2536 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_2536 . -:data_0957 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:topic_0097 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation." ; + ns2:hasExactSynonym "Nucleic acid structure" ; + ns2:hasHumanReadableId "Nucleic_acid_structure_analysis" ; + ns2:hasNarrowSynonym "DNA melting", "DNA structure", "Nucleic acid denaturation", "Nucleic acid thermodynamics", "RNA alignment", "RNA structure", "RNA structure alignment" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0077, + ns1:topic_0081 . -:topic_0114 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc." ; + ns2:hasExactSynonym "Gene features" ; + ns2:hasHumanReadableId "Gene_structure" ; + ns2:hasNarrowSynonym "Fusion genes" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "This includes the study of promoters, coding regions etc.", "This incudes 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." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3321 . + rdfs:subClassOf ns1:topic_3321 . -:data_0849 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "SO:2000061" ; + ns2:hasDefinition "A molecular sequence and associated metadata." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; - rdfs:subClassOf :data_2044 . + rdfs:subClassOf ns1:data_2044 . -:data_0850 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasNarrowSynonym "Alignment reference" ; + ns2:hasRelatedSynonym "SO:0001260" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:data_1087 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3025 . - -:data_1460 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3025 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules." ; + ns2:hasExactSynonym "Protein structures" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], + ns1:data_0883 . -:data_2044 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "One or more molecular sequences, possibly with associated annotation." ; + ns2:hasExactSynonym "Sequences" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], + ns1:data_0006 . -:data_2910 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1075 . - -:data_3108 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a protein family (that is deposited in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1075 . + +ns1: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", + ns1:created_in "beta13" ; + ns2:hasDefinition "Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware." ; + ns2:hasExactSynonym "Experimental measurement data", "Experimentally measured data", "Measured data", "Measurement", "Measurement data" ; - oboInOwl:hasNarrowSynonym "Measurement metadata", + ns2:hasNarrowSynonym "Measurement metadata", "Raw experimental data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:format_1915 a owl:Class ; +ns1:format_1915 a owl:Class ; rdfs:label "Format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasBroadSynonym "Data model" ; - 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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Data model" ; + ns2:hasDefinition "A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere." ; + ns2:hasExactSynonym "Data format", "Exchange format" ; - oboInOwl:hasNarrowSynonym "File format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasNarrowSynonym "File format" ; + ns2:inSubset ns4:edam, + ns4: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 "\"http://purl.obolibrary.org/obo/IAO_0000098\"", "\"http://purl.org/dc/elements/1.1/format\"", @@ -38480,111 +38477,111 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#quality", "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant", "http://www.onto-med.de/ontologies/gfo.owl#Symbol_structure" ; - owl:disjointWith :operation_0004, - :topic_0003, + owl:disjointWith ns1:operation_0004, + ns1:topic_0003, owl:DeprecatedClass . -:format_1920 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for molecular sequence feature information." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:format_2350 . -:operation_0295 a owl:Class ; +ns1:operation_0295 a owl:Class ; rdfs:label "Structure alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Align (superimpose) molecular tertiary structures." ; - oboInOwl:hasExactSynonym "Structural alignment" ; - oboInOwl:hasNarrowSynonym "3D profile alignment", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Align (superimpose) molecular tertiary structures." ; + ns2:hasExactSynonym "Structural alignment" ; + ns2:hasNarrowSynonym "3D profile alignment", "3D profile-to-3D profile alignment", "Structural profile alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0886 ], - :operation_2480, - :operation_2483, - :operation_2928 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0886 ], + ns1:operation_2480, + ns1:operation_2483, + ns1:operation_2928 . -:operation_0415 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence feature detection (nucleic acid)" ; + ns2:hasNarrowSynonym "Nucleic acid feature prediction", "Nucleic acid feature recognition", "Nucleic acid site detection", "Nucleic acid site prediction", "Nucleic acid site recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1276 ], - :operation_2423, - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1276 ], + ns1:operation_2423, + ns1:operation_2478 . -:operation_2406 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1460 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse protein structural data." ; + ns2:hasExactSynonym "Structure analysis (protein)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], - :operation_2480 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2480 . -:operation_2424 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2451 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Compare two or more things to identify similarities." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1:operation_2451 a owl:Class ; rdfs:label "Sequence comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Compare two or more molecular sequences." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2955 ], - :operation_2403, - :operation_2424 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2955 ], + ns1:operation_2403, + ns1:operation_2424 . -:topic_0602 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId "http://edamontology.org/topic_3076" ; + ns2:hasDefinition "Molecular interactions, biological pathways, networks and other models." ; + ns2:hasHumanReadableId "Molecular_interactions_pathways_and_networks" ; + ns2:hasNarrowSynonym "Biological models", "Biological networks", "Biological pathways", "Cellular process pathways", @@ -38600,335 +38597,335 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Pathways", "Signal transduction pathways", "Signaling pathways" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:data_2337 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Provenance metadata" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_2968 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen." ; + ns2:hasExactSynonym "Image data" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_000079", "http://semanticscience.org/resource/SIO_000081" ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:format_2058 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2603 ], - :format_2350 . - -:format_2919 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; + ns2:hasExactSynonym "Gene expression data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2603 ], + ns1:format_2350 . + +ns1:format_2919 a owl:Class ; rdfs:label "Sequence annotation track format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of a sequence annotation track." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a sequence annotation track." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3002 ], - :format_1920 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3002 ], + ns1:format_1920 . -:operation_2409 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasExactSynonym "File handling", "File processing", "Report handling", "Utility operation" ; - oboInOwl:hasNarrowSynonym "Processing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Processing" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3489 ], - :operation_0004 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3489 ], + ns1:operation_0004 . -:topic_0622 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc." ; + ns2:hasHumanReadableId "Genomics" ; + ns2:hasNarrowSynonym "Exomes", "Genome annotation", "Genomes", "Personal genomics", "Synthetic genomics", "Viral genomics", "Whole genomes" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D023281" ; - rdfs:subClassOf :topic_3391 . + rdfs:subClassOf ns1:topic_3391 . -:topic_1317 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.24 Structural biology" ; + ns2:hasDefinition "The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids." ; + ns2:hasHumanReadableId "Structural_biology" ; + ns2:hasNarrowSynonym "Structural assignment", "Structural determination", "Structure determination" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3070 . -:data_1255 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence." ; + ns2:hasExactSynonym "Feature record", "Features", "General sequence features", "Sequence features report" ; - oboInOwl:hasRelatedSynonym "SO:0000110" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasRelatedSynonym "SO:0000110" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:data_2365 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1082 . - -:format_2013 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A persistent, unique identifier of a biological pathway or network (typically a database entry)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1082 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a biological pathway or network." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2600 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2600 ], + ns1:format_2350 . -:format_2571 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a raw molecular sequence (i.e. the alphabet used)." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], + ns1:format_2350 . -:operation_3429 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Construct some data entity." ; + ns2:hasExactSynonym "Construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "For non-analytical operations, see the 'Processing' branch." ; - rdfs:subClassOf :operation_0004 . + rdfs:subClassOf ns1:operation_0004 . -:data_0863 a owl:Class ; +ns1:data_0863 a owl:Class ; rdfs:label "Sequence alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Alignment of multiple molecular sequences." ; - oboInOwl:hasExactSynonym "Multiple sequence aligment", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple molecular sequences." ; + ns2:hasExactSynonym "Multiple sequence aligment", "msa" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://en.wikipedia.org/wiki/Sequence_alignment", "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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], + ns1:data_1916 . -:data_0883 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure." ; + ns2:hasExactSynonym "Coordinate model", "Structure data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_0006 . -:data_1893 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasExactSynonym "Locus identifier", "Locus name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2012 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2012 ], + ns1:data_0976 . -:data_2082 a owl:Class ; +ns1:data_2082 a owl:Class ; rdfs:label "Matrix" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An array of numerical values." ; - oboInOwl:hasExactSynonym "Array" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An array of numerical values." ; + ns2:hasExactSynonym "Array" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:operation_0250 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Protein property rendering" ; + ns2:hasNarrowSynonym "Protein property calculation (from sequence)", "Protein property calculation (from structure)", "Protein structural property calculation", "Structural property calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2423, + ns1:operation_3438 . -:operation_0292 a owl:Class ; +ns1:operation_0292 a owl:Class ; rdfs:label "Sequence alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl: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'." ; - oboInOwl:hasDefinition "Align (identify equivalent sites within) molecular sequences." ; - oboInOwl:hasExactSynonym "Sequence alignment construction", + ns1:created_in "beta12orEarlier" ; + ns2: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'." ; + ns2:hasDefinition "Align (identify equivalent sites within) molecular sequences." ; + ns2:hasExactSynonym "Sequence alignment construction", "Sequence alignment generation" ; - oboInOwl:hasNarrowSynonym "Consensus-based sequence alignment", + ns2:hasNarrowSynonym "Consensus-based sequence alignment", "Constrained sequence alignment", "Multiple sequence alignment (constrained)", "Sequence alignment (constrained)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0863 ], + ns1:operation_2403, + ns1:operation_2451, + ns1:operation_2928 . -:operation_3092 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns2:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein sequences or structures." ; + ns2:hasExactSynonym "Protein feature prediction", "Protein feature recognition" ; - oboInOwl:hasNarrowSynonym "Protein secondary database search", + ns2:hasNarrowSynonym "Protein secondary database search", "Protein site detection", "Protein site prediction", "Protein site recognition", "Sequence feature detection (protein)", "Sequence profile database search" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1277 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0078 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0078 ], - :operation_2423, - :operation_2479 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1277 ], + ns1:operation_2423, + ns1:operation_2479 . -:topic_0621 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "A specific organism, or group of organisms, used to study a particular aspect of biology." ; + ns2:hasExactSynonym "Organisms" ; + ns2:hasHumanReadableId "Model_organisms" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3070 . -:data_2109 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier that is re-used for data objects of fundamentally different types (typically served from a single database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_0842 . -:operation_2945 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Apply analytical methods to existing data of a specific type." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0004 . -:topic_0121 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein and peptide identification, especially in the study of whole proteomes of organisms." ; + ns2:hasHumanReadableId "Proteomics" ; + ns2:hasNarrowSynonym "Bottom-up proteomics", "Discovery proteomics", "MS-based targeted proteomics", "MS-based untargeted proteomics", @@ -38938,101 +38935,101 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Quantitative proteomics", "Targeted proteomics", "Top-down proteomics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3391 . -:topic_0203 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId "http://edamontology.org/topic_0197" ; + ns2: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." ; + ns2:hasExactSynonym "Expression" ; + ns2:hasHumanReadableId "Gene_expression" ; + ns2:hasNarrowSynonym "Codon usage", "DNA chips", "DNA microarrays", "Gene expression profiling", "Gene transcription", "Gene translation", "Transcription" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3321 . -:data_1026 a owl:Class ; +ns1:data_1026 a owl:Class ; rdfs:label "Gene symbol" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:Global_GeneCommonName", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2299 . + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2299 . -:data_2531 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Experiment annotation", "Experiment metadata", "Experiment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_2534 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2907 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An attribute of a molecular sequence, possibly in reference to some other sequence." ; + ns2:hasNarrowSynonym "Sequence parameter" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0989, - :data_2901 . - -:operation_2480 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a protein deposited in a database." ; + ns2:hasExactSynonym "Protein accessions" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0989, + ns1:data_2901 . + +ns1:operation_2480 a owl:Class ; rdfs:label "Structure analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse known molecular tertiary structures." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse known molecular tertiary structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:operation_2945 . -:topic_0003 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasRelatedSynonym "sumo:FieldOfStudy" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso "http://bioontology.org/ontologies/ResearchArea.owl#Area_of_Research", "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Method", "http://purl.org/biotop/biotop.owl#Quality", @@ -39043,13 +39040,13 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" ; owl:disjointWith owl:DeprecatedClass . -:topic_0128 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions." ; + ns2:hasHumanReadableId "Protein_interactions" ; + ns2:hasNarrowSynonym "Protein interaction map", "Protein interaction networks", "Protein interactome", "Protein-DNA interaction", @@ -39059,200 +39056,200 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Protein-ligand interactions", "Protein-nucleic acid interactions", "Protein-protein interactions" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078, - :topic_0602 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0602 . -:data_0906 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Protein interaction record", "Protein interaction report", "Protein report (interaction)", "Protein-protein interaction data" ; - oboInOwl:hasNarrowSynonym "Atom interaction data", + ns2:hasNarrowSynonym "Atom interaction data", "Protein non-covalent interactions report", "Residue interaction data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :data_0897 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], + ns1:data_0897 . -:topic_0081 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules." ; + ns2:hasExactSynonym "Biomolecular structure", "Structural bioinformatics" ; - oboInOwl:hasHumanReadableId "Structure_analysis" ; - oboInOwl:hasNarrowSynonym "Computational structural biology", + ns2:hasHumanReadableId "Structure_analysis" ; + ns2:hasNarrowSynonym "Computational structural biology", "Molecular structure", "Structure data resources", "Structure databases", "Structures" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3307 . -:data_1276 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable." ; + ns2:hasExactSynonym "Feature table (nucleic acid)", "Nucleic acid feature table" ; - oboInOwl:hasNarrowSynonym "Genome features", + ns2:hasNarrowSynonym "Genome features", "Genomic features" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1255 . -:operation_0337 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures." ; + ns2:hasExactSynonym "Data visualisation", "Rendering" ; - oboInOwl:hasNarrowSynonym "Molecular visualisation", + ns2:hasNarrowSynonym "Molecular visualisation", "Plotting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes methods to render and visualise molecules." ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2968 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0092 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0092 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2968 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2968 ], - :operation_0004 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2968 ], + ns1:operation_0004 . -:operation_2495 a owl:Class ; +ns1:operation_2495 a owl:Class ; rdfs:label "Expression analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function." ; + ns2: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." ; + ns2:hasExactSynonym "Expression data analysis" ; + ns2:hasNarrowSynonym "Gene expression analysis", "Gene expression data analysis", "Gene expression regulation analysis", "Metagenomic inference", "Microarray data analysis", "Protein expression analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso , ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:operation_2945 . -:operation_2403 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse one or more known molecular sequences." ; + ns2:hasExactSynonym "Sequence analysis (general)" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0080 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], + ns1:operation_2945 . -:topic_0160 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Sequence_sites_features_and_motifs" ; + ns2:hasNarrowSynonym "Functional sites", "HMMs", "Sequence features", "Sequence motifs", "Sequence profiles", "Sequence sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3307 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3307 . -:data_0897 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model." ; + ns2:hasExactSynonym "Protein physicochemical property", "Protein properties" ; - oboInOwl:hasNarrowSynonym "Protein sequence statistics" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "Protein sequence statistics" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2087 . -:data_0907 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0623 ], - :data_0896 . - -:data_1277 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Protein classification data" ; + ns2:hasDefinition "An informative report on a specific protein family or other classification or group of protein sequences or structures." ; + ns2:hasExactSynonym "Protein family annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0623 ], + ns1:data_0896 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report on intrinsic positional features of a protein sequence." ; + ns2:hasExactSynonym "Feature table (protein)", "Protein feature table" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0896, + ns1:data_1255 . -:operation_2478 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences)." ; + ns2:hasExactSynonym "Sequence analysis (nucleic acid)" ; + ns2:hasNarrowSynonym "Nucleic acid sequence alignment analysis", "Sequence alignment analysis (nucleic acid)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0077 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], - :operation_2403 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0077 ], + ns1:operation_2403 . -:topic_3070 a owl:Class ; +ns1:topic_3070 a owl:Class ; rdfs:label "Biology" ; - :created_in "beta13" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Life science", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Life science", "Life sciences" ; - oboInOwl:hasDbXref "VT 1.5 Biological sciences", + ns2:hasDbXref "VT 1.5 Biological sciences", "VT 1.5.1 Aerobiology", "VT 1.5.13 Cryobiology", "VT 1.5.23 Reproductive biology", @@ -39260,156 +39257,156 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "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", + ns2:hasDefinition "The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on." ; + ns2:hasExactSynonym "Biological science" ; + ns2:hasHumanReadableId "Biology" ; + ns2:hasNarrowSynonym "Aerobiology", "Behavioural biology", "Biological rhythms", "Chronobiology", "Cryobiology", "Reproductive biology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:format_2554 a owl:Class ; +ns1:format_2554 a owl:Class ; rdfs:label "Alignment format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Text format for molecular sequence alignment information." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for molecular sequence alignment information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921 . -:operation_2423 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Predict, recognise, detect or identify some properties of a biomolecule." ; + ns2:hasNarrowSynonym "Detection", "Prediction", "Recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . -:topic_0080 a owl:Class ; +ns1: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:hasExactSynonym "Sequences" ; - oboInOwl:hasHumanReadableId "Sequence_analysis" ; - oboInOwl:hasNarrowSynonym "Biological sequences", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles." ; + ns2:hasExactSynonym "Sequences" ; + ns2:hasHumanReadableId "Sequence_analysis" ; + ns2:hasNarrowSynonym "Biological sequences", "Sequence databases" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D017421" ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:format_3245 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for mass pectra and derived data, include peptide sequences etc." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2536 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2536 ], + ns1:format_2350 . -:data_0842 a owl:Class ; +ns1: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:hasNarrowSynonym dc:identifier ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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)." ; + ns2:hasExactSynonym "ID" ; + ns2:hasNarrowSynonym dc:identifier ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:seeAlso "\"http://purl.org/dc/elements/1.1/identifier\"", "http://semanticscience.org/resource/SIO_000115", "http://wsio.org/data_005" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0006 ], - :data_0006 ; - owl:disjointWith :data_2048 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:data_0006 ; + owl:disjointWith ns1:data_2048 . -:format_2551 a owl:Class ; +ns1:format_2551 a owl:Class ; rdfs:label "Sequence record format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data format for a molecular sequence record." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1919 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for a molecular sequence record." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1919 . -:data_2295 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol." ; + ns2:hasExactSynonym "Gene accession", "Gene code" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1025, - :data_1893 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1025, + ns1:data_1893 . -:data_2610 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:format_3547 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "ENS[A-Z]*[FPTG][0-9]{11}" ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database." ; + ns2:hasExactSynonym "Ensembl IDs" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.9" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for images and image metadata." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2968 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2968 ], + ns1:format_2350 . -:operation_2422 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Data extraction", "Retrieval" ; - oboInOwl:hasNarrowSynonym "Data retrieval (metadata)", + ns2:hasNarrowSynonym "Data retrieval (metadata)", "Metadata retrieval" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0842 ], - :operation_0224, - :operation_3908 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0842 ], + ns1:operation_0224, + ns1:operation_3908 . -:operation_0004 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Function" ; + ns2:hasDefinition "A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs)." ; + ns2:hasNarrowSynonym "Computational method", "Computational operation", "Computational procedure", "Computational subroutine", @@ -39417,11 +39414,11 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Lambda abstraction", "Mathematical function", "Mathematical operation" ; - oboInOwl:hasRelatedSynonym "Computational tool", + ns2:hasRelatedSynonym "Computational tool", "Process", "sumo:Function" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 "http://en.wikipedia.org/wiki/Function_(computer_science)", "http://en.wikipedia.org/wiki/Function_(mathematics)", @@ -39441,160 +39438,160 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://www.onto-med.de/ontologies/gfo.owl#Function", "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant", "http://www.onto-med.de/ontologies/gfo.owl#Process" ; - owl:disjointWith :topic_0003, + owl:disjointWith ns1:topic_0003, owl:DeprecatedClass . -:topic_3303 a owl:Class ; +ns1:topic_3303 a owl:Class ; rdfs:label "Medicine" ; - :created_in "1.3" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 3.1 Basic medicine", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "Research in support of healing by diagnosis, treatment, and prevention of disease." ; + ns2:hasExactSynonym "Biomedical research", "Clinical medicine", "Experimental medicine" ; - oboInOwl:hasHumanReadableId "Medicine" ; - oboInOwl:hasNarrowSynonym "General medicine", + ns2:hasHumanReadableId "Medicine" ; + ns2:hasNarrowSynonym "General medicine", "Internal medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:data_2099 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym rdfs:label ; + ns2:hasDefinition "A name of a thing, which need not necessarily uniquely identify it." ; + ns2:hasExactSynonym "Symbolic name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_0842 . -:data_2048 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Document", "Record" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:has_input a owl:ObjectProperty ; +ns1:has_input a owl:ObjectProperty ; rdfs:label "has input" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:has_participant" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:operation_0004 ; + rdfs:range ns1:data_0006 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000293\"", "http://wsio.org/has_input" ; - owl:inverseOf :is_input_of . + owl:inverseOf ns1:is_input_of . -:data_0976 a owl:Class ; +ns1:data_0976 a owl:Class ; rdfs:label "Identifier (by type of data)" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier that identifies a particular type of data." ; - oboInOwl:hasExactSynonym "Identifier (typed)" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier that identifies a particular type of data." ; + ns2:hasExactSynonym "Identifier (typed)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_0842 . -:format_2350 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented." ; + ns2:hasExactSynonym "Format (typed)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1915 . -:format_2332 a owl:Class ; +ns1:format_2332 a owl:Class ; rdfs:label "XML" ; - :created_in "beta12orEarlier" ; - :file_extension "xml" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "beta12orEarlier" ; + ns1:file_extension "xml" ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "eXtensible Markup Language (XML) format." ; - oboInOwl:hasExactSynonym "eXtensible Markup Language" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "eXtensible Markup Language (XML) format." ; + ns2:hasExactSynonym "eXtensible Markup Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Data in XML format can be serialised into text, or binary format." ; - rdfs:subClassOf :format_1915 ; - owl:disjointWith :format_2333 . + rdfs:subClassOf ns1:format_1915 ; + owl:disjointWith ns1:format_2333 . -:is_identifier_of a owl:ObjectProperty ; +ns1:is_identifier_of a owl:ObjectProperty ; rdfs:label "is identifier of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 . + rdfs:domain ns1:data_0842 ; + rdfs:range ns1:data_0006 . -:format_2331 a owl:Class ; +ns1:format_2331 a owl:Class ; rdfs:label "HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "HTML format." ; - oboInOwl:hasExactSynonym "Hypertext Markup Language" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "HTML format." ; + ns2:hasExactSynonym "Hypertext Markup Language" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2048 ], + ns1:format_1915 ; + owl:disjointWith ns1:format_2333 . -:format_2333 a owl:Class ; +ns1:format_2333 a owl:Class ; rdfs:label "Binary format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Binary format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Binary format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1915 . -:data_0006 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasExactSynonym "Data record" ; + ns2:hasNarrowSynonym "Data set", "Datum" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/IAO_0000027\"", "\"http://purl.obolibrary.org/obo/IAO_0000030\"", "http://purl.org/biotop/biotop.owl#DigitalEntity", @@ -39603,295 +39600,295 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://wsio.org/data_002", "http://www.ifomis.org/bfo/1.1/snap#Continuant", "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" ; - owl:disjointWith :format_1915, - :operation_0004, - :topic_0003, + owl:disjointWith ns1:format_1915, + ns1:operation_0004, + ns1:topic_0003, owl:DeprecatedClass . -:is_format_of a owl:ObjectProperty ; +ns1:is_format_of a owl:ObjectProperty ; rdfs:label "is format of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A is_format_of B' defines for the subject A, that it is a data format of the object B." ; + ns2:hasRelatedSynonym "OBO_REL:quality_of" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 ; + rdfs:domain ns1:format_1915 ; + rdfs:range ns1:data_0006 ; rdfs:seeAlso "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" . -:has_output a owl:ObjectProperty ; +ns1:has_output a owl:ObjectProperty ; rdfs:label "has output" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:has_participant" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:operation_0004 ; + rdfs:range ns1:data_0006 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000299\"", "http://wsio.org/has_output" ; - owl:inverseOf :is_output_of . + owl:inverseOf ns1:is_output_of . -edam:events a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:events a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -:has_topic a owl:ObjectProperty ; +ns1:has_topic a owl:ObjectProperty ; rdfs:label "has topic" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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)." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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:unionOf ( ns1:data_0006 ns1:operation_0004 ) ] ; + rdfs:range ns1:topic_0003 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/IAO_0000136\"", "\"http://purl.obolibrary.org/obo/OBI_0000298\"", "http://annotation-ontology.googlecode.com/svn/trunk/annotation-core.owl#hasTopic", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#has-quality" ; - owl:inverseOf :is_topic_of . + owl:inverseOf ns1:is_topic_of . -:format_2330 a owl:Class ; +ns1:format_2330 a owl:Class ; rdfs:label "Textual format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Textual format." ; - oboInOwl:hasNarrowSynonym "Plain text format", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Textual format." ; + ns2:hasNarrowSynonym "Plain text format", "txt" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1915 ; + owl:disjointWith ns1:format_2333 . -:data_2091 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A persistent (stable) and unique identifier, typically identifying an object (entry) from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_000675", "http://semanticscience.org/resource/SIO_000731" ; - rdfs:subClassOf :data_0842 . + rdfs:subClassOf ns1:data_0842 . -edam:topics a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:topics a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:identifiers a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:identifiers a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:operations a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:operations a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:formats a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:formats a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:data a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:data a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:obsolete a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:obsolete a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . owl:DeprecatedClass a owl:Class . -edam:edam a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:edam a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . [] 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 . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_function_of ; + owl:annotatedTarget "OBO_REL:inheres_in" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_input ; - owl:annotatedTarget "true" . + 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 ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:format_1915 ; + owl:annotatedTarget "File format" . [] a owl:Axiom ; - rdfs:comment "Computational tool provides one or more operations." ; - owl:annotatedProperty oboInOwl:hasRelatedSynonym ; - owl:annotatedSource :operation_0004 ; - owl:annotatedTarget "Computational tool" . + 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 ns2:hasBroadSynonym ; + owl:annotatedSource ns1:format_1915 ; + owl:annotatedTarget "Data model" . [] 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" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:has_function ; + owl:annotatedTarget "true" . [] 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" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:has_output ; + 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_input_of ; + owl:annotatedTarget "OBO_REL:participates_in" . [] 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" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_function_of ; + owl:annotatedTarget "true" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_input_of ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_output_of ; 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 inputs or input arguments of the subject." ; - owl:annotatedProperty oboInOwl:hasRelatedSynonym ; - owl:annotatedSource :has_input ; - owl:annotatedTarget "OBO_REL:has_participant" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_format_of ; + owl:annotatedTarget "OBO_REL:quality_of" . [] 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" . + rdfs:comment "Closely related, but focusing on labeling and human readability but not on identification." ; + owl:annotatedProperty ns2:hasBroadSynonym ; + owl:annotatedSource ns1:data_2099 ; + owl:annotatedTarget rdfs:label . [] 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:has_function ; + owl:annotatedTarget "OBO_REL:bearer_of" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_topic ; - owl:annotatedTarget "true" . + 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 ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:is_function_of ; + owl:annotatedTarget "OBO_REL:function_of" . [] 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" . + rdfs:comment "Almost exact but limited to identifying resources." ; + owl:annotatedProperty ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0842 ; + owl:annotatedTarget dc:identifier . [] 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 . + 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 ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0006 ; + owl:annotatedTarget "Data set" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_function_of ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_input_of ; owl:annotatedTarget "true" . [] 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:hasNarrowSynonym ; - owl:annotatedSource :format_1915 ; - owl:annotatedTarget "File format" . + 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 ns1:comment_handle ; + owl:annotatedSource ns1:operation_3357 ; + owl:annotatedTarget ns1:comment_handle . [] 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:hasBroadSynonym ; - owl:annotatedSource :format_1915 ; - owl:annotatedTarget "Data model" . + 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 ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0006 ; + owl:annotatedTarget "Datum" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_output ; - owl:annotatedTarget "true" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_output_of ; + owl:annotatedTarget "OBO_REL:participates_in" . [] 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_topic_of ; + owl:annotatedTarget "OBO_REL:quality_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" . + 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 ns2:hasExactSynonym ; + owl:annotatedSource ns1:data_0006 ; + owl:annotatedTarget "Data record" . [] 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" . + rdfs:comment "Computational tool provides one or more operations." ; + owl:annotatedProperty ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:operation_0004 ; + owl:annotatedTarget "Computational tool" . [] 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" . + rdfs:comment "Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'." ; + owl:annotatedProperty ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0925 ; + owl:annotatedTarget "SO:0001248" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_function ; - owl:annotatedTarget "true" . + rdfs:comment "A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'." ; + owl:annotatedProperty ns1:example ; + owl:annotatedSource ns1:data_1165 ; + owl:annotatedTarget "UniProt|Enzyme Nomenclature" . [] a owl:Axiom ; - rdfs:comment "Almost exact but limited to identifying resources." ; - owl:annotatedProperty oboInOwl:hasNarrowSynonym ; - owl:annotatedSource :data_0842 ; - owl:annotatedTarget dc:identifier . + rdfs:comment "Operation is a function that is computational. It typically has input(s) and output(s), which are always data." ; + owl:annotatedProperty ns2:hasBroadSynonym ; + owl:annotatedSource ns1:operation_0004 ; + owl:annotatedTarget "Function" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_topic_of ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:has_topic ; owl:annotatedTarget "true" . [] 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:has_output ; + owl:annotatedTarget "OBO_REL:has_participant" . [] 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" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1: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_topic_of ; - owl:annotatedTarget "OBO_REL:quality_of" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_topic_of ; + owl:annotatedTarget "true" . [] 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" . + rdfs:comment "Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs." ; + owl:annotatedProperty ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:operation_0004 ; + owl:annotatedTarget "Process" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_output_of ; - owl:annotatedTarget "true" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:has_input ; + owl:annotatedTarget "OBO_REL:has_participant" . diff --git a/src/edam_ref.ttl b/src/edam_ref.ttl index 745c51d..c5ffb91 100644 --- a/src/edam_ref.ttl +++ b/src/edam_ref.ttl @@ -1,24 +1,24 @@ -@prefix : . @prefix dc: . @prefix doap: . -@prefix edam: . @prefix foaf: . -@prefix oboInOwl: . -@prefix oboOther: . +@prefix ns1: . +@prefix ns2: . +@prefix ns3: . +@prefix ns4: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . a owl:Ontology ; - :next_id "4010" ; - oboOther:date "18.06.2020 09:15 UTC" ; - oboOther:idspace "EDAM http://edamontology.org/ \"EDAM relations and concept properties\"", + ns1:next_id "4010" ; + ns3:date "18.06.2020 09:15 UTC" ; + ns3:idspace "EDAM http://edamontology.org/ \"EDAM relations and concept properties\"", "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\"" ; - oboOther:remark "EDAM editors: Jon Ison, Matúš Kalaš, Hervé Ménager, and Veit Schwämmle. Contributors: see http://edamontologydocs.readthedocs.io/en/latest/contributors.html. License: see http://edamontologydocs.readthedocs.io/en/latest/license.html.", + ns3:remark "EDAM editors: Jon Ison, Matúš Kalaš, Hervé Ménager, and Veit Schwämmle. Contributors: see http://edamontologydocs.readthedocs.io/en/latest/contributors.html. License: see http://edamontologydocs.readthedocs.io/en/latest/license.html.", "EDAM is an ontology of well established, familiar concepts that are prevalent within bioinformatics, including types of data and data identifiers, data formats, operations and topics. EDAM is a simple ontology - essentially a set of terms with synonyms and definitions - organised into an intuitive hierarchy for convenient use by curators, software developers and end-users. EDAM is suitable for large-scale semantic annotations and categorisation of diverse bioinformatics resources. EDAM is also suitable for diverse application including for example within workbenches and workflow-management systems, software distributions, and resource registries." ; dc:contributor "Veit Schwämmle" ; dc:creator "Hervé Ménager", @@ -27,7 +27,7 @@ dc:format "application/rdf+xml" ; dc:title "Bioinformatics operations, data types, formats, identifiers and topics" ; doap:Version "1.25" ; - oboInOwl:hasSubset "concept_properties \"EDAM concept properties\"", + ns2:hasSubset "concept_properties \"EDAM concept properties\"", "data \"EDAM types of data\"", "edam \"EDAM\"", "formats \"EDAM data formats\"", @@ -35,15537 +35,15537 @@ "operations \"EDAM operations\"", "relations \"EDAM relations\"", "topics \"EDAM topics\"" ; - oboInOwl:savedBy "Jon Ison, Matúš Kalaš, Hervé Ménager" ; - rdfs:isDefinedBy :EDAM.owl ; - foaf:page :page . + ns2:savedBy "Jon Ison, Matúš Kalaš, Hervé Ménager" ; + rdfs:isDefinedBy ns1:EDAM.owl ; + foaf:page ns1:page . -:citation a owl:AnnotationProperty ; +ns1:citation a owl:AnnotationProperty ; rdfs:label "Citation" ; - :created_in "1.13" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasBroadSynonym "Publication reference" ; - oboInOwl:hasDefinition "'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferrably including a DOI, pointing to a citeable publication of the given data format." ; - oboInOwl:hasRelatedSynonym "Publication" ; - oboInOwl:inSubset "concept_properties" . - -:created_in a owl:AnnotationProperty ; + ns1:created_in "1.13" ; + ns3:is_metadata_tag "true" ; + ns2:hasBroadSynonym "Publication reference" ; + ns2:hasDefinition "'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferrably including a DOI, pointing to a citeable publication of the given data format." ; + ns2:hasRelatedSynonym "Publication" ; + ns2:inSubset "concept_properties" . + +ns1:created_in a owl:AnnotationProperty ; rdfs:label "Created in" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "Version in which a concept was created." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Version in which a concept was created." ; + ns2:inSubset "concept_properties" . -:data_0005 a owl:Class ; +ns1:data_0005 a owl:Class ; rdfs:label "Resource type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "A type of computational resource used in bioinformatics." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "A type of computational resource used in bioinformatics." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0007 a owl:Class ; +ns1:data_0007 a owl:Class ; rdfs:label "Tool" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A bioinformatics package or tool, e.g. a standalone application or web service." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0958 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A bioinformatics package or tool, e.g. a standalone application or web service." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0958 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0581 a owl:Class ; +ns1:data_0581 a owl:Class ; rdfs:label "Database" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0957 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0957 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0583 a owl:Class ; +ns1:data_0583 a owl:Class ; rdfs:label "Directory metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "A directory on disk from which files are read." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "A directory on disk from which files are read." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0831 a owl:Class ; +ns1:data_0831 a owl:Class ; rdfs:label "MeSH vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0832 a owl:Class ; +ns1:data_0832 a owl:Class ; rdfs:label "HGNC vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0582 ; - oboInOwl:hasDefinition "Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0835 a owl:Class ; +ns1:data_0835 a owl:Class ; rdfs:label "UMLS vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0582 ; - oboInOwl:hasDefinition "Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0843 a owl:Class ; +ns1:data_0843 a owl:Class ; rdfs:label "Database entry" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "An entry (retrievable via URL) from a biological database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "An entry (retrievable via URL) from a biological database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0844 a owl:Class ; +ns1:data_0844 a owl:Class ; rdfs:label "Molecular mass" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mass of a molecule." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mass of a molecule." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . -:data_0845 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . - -:data_0851 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "PDBML:pdbx_formal_charge" ; + ns2:hasDefinition "Net charge of a molecule." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . + +ns1:data_0851 a owl:Class ; rdfs:label "Sequence mask character" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "A character used to replace (mask) other characters in a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "A character used to replace (mask) other characters in a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0852 a owl:Class ; +ns1:data_0852 a owl:Class ; rdfs:label "Sequence mask type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of sequence masking to perform." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of sequence masking to perform." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:data_2534 ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "The strand of a DNA sequence (forward or reverse)." ; + ns2:inSubset ns4: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 ; +ns1:data_0854 a owl:Class ; rdfs:label "Sequence length specification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "A specification of sequence length(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "A specification of sequence length(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0855 a owl:Class ; +ns1:data_0855 a owl:Class ; rdfs:label "Sequence metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2955 ; - oboInOwl:hasDefinition "Basic or general information concerning molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2955 ; + ns2:hasDefinition "Basic or general information concerning molecular sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2914 . -:data_0859 a owl:Class ; +ns1:data_0859 a owl:Class ; rdfs:label "Sequence signature model" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "Data files used by motif or profile methods." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "Data files used by motif or profile methods." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0861 a owl:Class ; +ns1:data_0861 a owl:Class ; rdfs:label "Sequence alignment (words)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of exact matches between subsequences (words) within two or more molecular sequences." ; - oboInOwl:hasExactSynonym "Sequence word alignment" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of exact matches between subsequences (words) within two or more molecular sequences." ; + ns2:hasExactSynonym "Sequence word alignment" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0864 a owl:Class ; +ns1:data_0864 a owl:Class ; rdfs:label "Sequence alignment parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Some simple value controlling a sequence alignment (or similar 'match') operation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Some simple value controlling a sequence alignment (or similar 'match') operation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0866 a owl:Class ; +ns1:data_0866 a owl:Class ; rdfs:label "Sequence alignment metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0868 a owl:Class ; +ns1: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." ; - :oldParent :data_1916 ; - oboInOwl:hasDefinition "A profile-profile alignment (each profile typically representing a sequence alignment)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta12orEarlier" ; + ns1: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." ; + ns1:oldParent ns1:data_1916 ; + ns2:hasDefinition "A profile-profile alignment (each profile typically representing a sequence alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:data_0869 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta12orEarlier" ; + ns1: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." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:data_1916 ; + ns2:hasDefinition "Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:data_0875 a owl:Class ; +ns1:data_0875 a owl:Class ; rdfs:label "Protein topology" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Predicted or actual protein topology represented as a string of protein secondary structure elements." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Predicted or actual protein topology represented as a string of protein secondary structure elements." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_0876 a owl:Class ; rdfs:label "Protein features report (secondary structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Secondary structure (predicted or real) of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Secondary structure (predicted or real) of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0877 a owl:Class ; +ns1:data_0877 a owl:Class ; rdfs:label "Protein features report (super-secondary)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Super-secondary structure of protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Super-secondary structure of protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_0879 a owl:Class ; rdfs:label "Secondary structure alignment metadata (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0882 a owl:Class ; +ns1:data_0882 a owl:Class ; rdfs:label "Secondary structure alignment metadata (RNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "An informative report of RNA secondary structure alignment-derived data or metadata." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "An informative report of RNA secondary structure alignment-derived data or metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0884 a owl:Class ; +ns1:data_0884 a owl:Class ; rdfs:label "Tertiary structure record" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0883 ; - oboInOwl:hasDefinition "An entry from a molecular tertiary (3D) structure database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0883 ; + ns2:hasDefinition "An entry from a molecular tertiary (3D) structure database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0885 a owl:Class ; +ns1:data_0885 a owl:Class ; rdfs:label "Structure database search results" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_2080 ; - oboInOwl:hasDefinition "Results (hits) from searching a database of tertiary structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_2080 ; + ns2:hasDefinition "Results (hits) from searching a database of tertiary structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0890 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1916 . - -:data_0891 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A 3D profile-3D profile alignment (each profile representing structures or a structure alignment)." ; + ns2:hasExactSynonym "Structural profile alignment" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1916 . + +ns1:data_0891 a owl:Class ; rdfs:label "Sequence-3D profile alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0893 ; - oboInOwl:hasDefinition "An alignment of a sequence to a 3D profile (representing structures or a structure alignment)." ; - oboInOwl:hasExactSynonym "Sequence-structural profile alignment" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0893 ; + ns2:hasDefinition "An alignment of a sequence to a 3D profile (representing structures or a structure alignment)." ; + ns2:hasExactSynonym "Sequence-structural profile alignment" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0894 a owl:Class ; +ns1:data_0894 a owl:Class ; rdfs:label "Amino acid annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific amino acid." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific amino acid." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0895 a owl:Class ; +ns1:data_0895 a owl:Class ; rdfs:label "Peptide annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific peptide." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific peptide." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0899 a owl:Class ; +ns1:data_0899 a owl:Class ; rdfs:label "Protein structural motifs and surfaces" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "3D structural motifs in a protein." ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "3D structural motifs in a protein." ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0900 a owl:Class ; +ns1:data_0900 a owl:Class ; rdfs:label "Protein domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0901 a owl:Class ; +ns1:data_0901 a owl:Class ; rdfs:label "Protein features report (domains)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "structural domains or 3D folds in a protein or polypeptide chain." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "structural domains or 3D folds in a protein or polypeptide chain." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0902 a owl:Class ; +ns1:data_0902 a owl:Class ; rdfs:label "Protein architecture report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "An informative report on architecture (spatial arrangement of secondary structure) of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "An informative report on architecture (spatial arrangement of secondary structure) of a protein structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0903 a owl:Class ; +ns1:data_0903 a owl:Class ; rdfs:label "Protein folding report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_1537 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1537 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0904 a owl:Class ; +ns1:data_0904 a owl:Class ; rdfs:label "Protein features (mutation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "Data on the effect of (typically point) mutation on protein folding, stability, structure and function." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "Data on the effect of (typically point) mutation on protein folding, stability, structure and function." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_3108 . -:data_0909 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_0910 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_0911 a owl:Class ; +ns1:data_0911 a owl:Class ; rdfs:label "Nucleotide base annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific nucleotide base." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific nucleotide base." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0917 a owl:Class ; +ns1:data_0917 a owl:Class ; rdfs:label "Gene classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0918 a owl:Class ; +ns1:data_0918 a owl:Class ; rdfs:label "DNA variation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "stable, naturally occuring 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 edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "stable, naturally occuring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0923 a owl:Class ; +ns1:data_0923 a owl:Class ; rdfs:label "PCR experiment report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0926 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Radiation hybrid scores (RH) scores for one or more markers." ; + ns2:hasExactSynonym "Radiation Hybrid (RH) scores" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping." ; - rdfs:subClassOf :data_3108 . + rdfs:subClassOf ns1:data_3108 . -:data_0931 a owl:Class ; +ns1:data_0931 a owl:Class ; rdfs:label "Microarray experiment report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "microarray experiments including conditions, protocol, sample:data relationships etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "microarray experiments including conditions, protocol, sample:data relationships etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0932 a owl:Class ; +ns1:data_0932 a owl:Class ; rdfs:label "Oligonucleotide probe data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2717 ; - oboInOwl:hasDefinition "Data on oligonucleotide probes (typically for use with DNA microarrays)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2717 ; + ns2:hasDefinition "Data on oligonucleotide probes (typically for use with DNA microarrays)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0933 a owl:Class ; +ns1:data_0933 a owl:Class ; rdfs:label "SAGE experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2535 ; - oboInOwl:hasDefinition "Output from a serial analysis of gene expression (SAGE) experiment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2535 ; + ns2:hasDefinition "Output from a serial analysis of gene expression (SAGE) experiment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0934 a owl:Class ; +ns1:data_0934 a owl:Class ; rdfs:label "MPSS experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2535 ; - oboInOwl:hasDefinition "Massively parallel signature sequencing (MPSS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2535 ; + ns2:hasDefinition "Massively parallel signature sequencing (MPSS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0935 a owl:Class ; +ns1:data_0935 a owl:Class ; rdfs:label "SBS experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2535 ; - oboInOwl:hasDefinition "Sequencing by synthesis (SBS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2535 ; + ns2:hasDefinition "Sequencing by synthesis (SBS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0936 a owl:Class ; +ns1:data_0936 a owl:Class ; rdfs:label "Sequence tag profile (with gene assignment)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.14" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_2535 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.14" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2535 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0937 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2537 . - -:data_0938 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Protein X-ray crystallographic data" ; + ns2:hasDefinition "X-ray crystallography data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2537 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2537 . - -:data_0939 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Nuclear magnetic resonance (NMR) raw data, typically for a protein." ; + ns2:hasNarrowSynonym "Protein NMR data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2537 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data." ; + ns2:hasExactSynonym "CD spectrum", "Protein circular dichroism (CD) spectroscopic data" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2537 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2537 . -:data_0940 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Volume map data from electron microscopy." ; + ns2:hasExactSynonym "3D volume map", "EM volume map", "Electron microscopy volume map" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3108 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3108 . -:data_0941 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_3806 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:data_0883 ; + ns2:hasDefinition "Annotation on a structural 3D model (volume map) from electron microscopy." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3806 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0942 a owl:Class ; +ns1:data_0942 a owl:Class ; rdfs:label "2D PAGE image" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Two-dimensional gel electrophoresis image" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Two-dimensional gel electrophoresis image" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_3424 . -:data_0945 a owl:Class ; +ns1: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'", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "'Protein identification'", "Peptide spectrum match" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_0897, - :data_2979 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_0897, + ns1:data_2979 . -:data_0946 a owl:Class ; +ns1:data_0946 a owl:Class ; rdfs:label "Pathway or network annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2984 ; + ns2:hasDefinition "An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0947 a owl:Class ; +ns1:data_0947 a owl:Class ; rdfs:label "Biological pathway map" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2600 ; - oboInOwl:hasDefinition "A map (typically a diagram) of a biological pathway." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2600 ; + ns2:hasDefinition "A map (typically a diagram) of a biological pathway." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0948 a owl:Class ; +ns1:data_0948 a owl:Class ; rdfs:label "Data resource definition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1883 ; + ns2:hasDefinition "A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0952 a owl:Class ; +ns1:data_0952 a owl:Class ; rdfs:label "EMBOSS database resource definition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "Resource definition for an EMBOSS database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "Resource definition for an EMBOSS database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0953 a owl:Class ; +ns1:data_0953 a owl:Class ; rdfs:label "Version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Information on a version of software or data, for example name, version number and release date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Information on a version of software or data, for example name, version number and release date." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information concerning an analysis of an index of biological data." ; + ns2:hasExactSynonym "Database index annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3489 ], - :data_2048 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3489 ], + ns1:data_2048 . -:data_0959 a owl:Class ; +ns1:data_0959 a owl:Class ; rdfs:label "Job metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Textual metadata on a submitted or completed job." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Textual metadata on a submitted or completed job." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0960 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Textual metadata on a software author or end-user, for example a person or other software." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_0964 a owl:Class ; +ns1:data_0964 a owl:Class ; rdfs:label "Scent annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report about a specific scent." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report about a specific scent." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0974 a owl:Class ; +ns1:data_0974 a owl:Class ; rdfs:label "Entity identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "An identifier of a biological entity or phenomenon." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "An identifier of a biological entity or phenomenon." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0975 a owl:Class ; +ns1:data_0975 a owl:Class ; rdfs:label "Data resource identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "An identifier of a data resource." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "An identifier of a data resource." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0978 a owl:Class ; +ns1:data_0978 a owl:Class ; rdfs:label "Discrete entity identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0979 a owl:Class ; +ns1:data_0979 a owl:Class ; rdfs:label "Entity feature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0980 a owl:Class ; +ns1:data_0980 a owl:Class ; rdfs:label "Entity collection identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "Name or other identifier of a collection of discrete biological entities." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Name or other identifier of a collection of discrete biological entities." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0981 a owl:Class ; +ns1:data_0981 a owl:Class ; rdfs:label "Phenomenon identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "Name or other identifier of a physical, observable biological occurrence or event." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Name or other identifier of a physical, observable biological occurrence or event." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0985 a owl:Class ; +ns1:data_0985 a owl:Class ; rdfs:label "Molecule type" ; - :created_in "beta12orEarlier" ; - :example "Protein|DNA|RNA" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type a molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "Protein|DNA|RNA" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type a molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "For example, 'Protein', 'DNA', 'RNA' etc." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0986 a owl:Class ; +ns1:data_0986 a owl:Class ; rdfs:label "Chemical identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1086 ; - oboInOwl:hasDefinition "Unique identifier of a chemical compound." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1086 ; + ns2:hasDefinition "Unique identifier of a chemical compound." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0992 a owl:Class ; +ns1:data_0992 a owl:Class ; rdfs:label "Ligand identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1086 ; - oboInOwl:hasDefinition "Code word for a ligand, for example from a PDB file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1086 ; + ns2:hasDefinition "Code word for a ligand, for example from a PDB file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_0997 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound." ; + ns2:hasExactSynonym "ChEBI chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "This is the recommended chemical name for use for example in database annotation." ; - rdfs:subClassOf :data_0990 . + rdfs:subClassOf ns1:data_0990 . -:data_0998 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_0999 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "IUPAC recommended name of a chemical compound." ; + ns2:hasExactSynonym "IUPAC chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_1000 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO)." ; + ns2:hasExactSynonym "INN chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_1001 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Brand name of a chemical compound." ; + ns2:hasExactSynonym "Brand chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . - -:data_1003 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Synonymous name of a chemical compound." ; + ns2:hasExactSynonym "Synonymous chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0991, - :data_2091 . - -:data_1004 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Beilstein registry number of a chemical compound." ; + ns2:hasExactSynonym "Beilstein chemical registry number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0991, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0991, - :data_2091 . - -:data_1005 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Gmelin registry number of a chemical compound." ; + ns2:hasExactSynonym "Gmelin chemical registry number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0991, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3-letter code word for a ligand (HET group) from a PDB file, for example ATP." ; + ns2:hasExactSynonym "Component identifier code", "Short ligand name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990 . -:data_1007 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990, - :data_0995 . - -:data_1008 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "String of one or more ASCII characters representing a nucleotide." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990, + ns1:data_0995 . + +ns1:data_1008 a owl:Class ; rdfs:label "Polypeptide chain ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_strand_id", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "PDBML:pdbx_PDB_strand_id", "WHATIF: chain" ; - oboInOwl:hasDefinition "Identifier of a polypeptide chain from a protein." ; - oboInOwl:hasExactSynonym "Chain identifier", + ns2:hasDefinition "Identifier of a polypeptide chain from a protein." ; + ns2:hasExactSynonym "Chain identifier", "PDB chain identifier", "PDB strand id", "Polypeptide chain identifier", "Protein chain identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1467 ], + ns1:data_0988 . -:data_1011 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+\\.-\\.-\\.-|[0-9]+\\.[0-9]+\\.-\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" ; + ns2:hasDbXref "Moby:Annotated_EC_Number", "Moby:EC_Number" ; - oboInOwl:hasDefinition "An Enzyme Commission (EC) number of an enzyme." ; - oboInOwl:hasExactSynonym "EC", + ns2:hasDefinition "An Enzyme Commission (EC) number of an enzyme." ; + ns2:hasExactSynonym "EC", "EC code", "Enzyme Commission number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . -:data_1013 a owl:Class ; +ns1:data_1013 a owl:Class ; rdfs:label "Restriction enzyme name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a restriction enzyme." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1012 . - -:data_1014 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a restriction enzyme." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1012 . + +ns1:data_1014 a owl:Class ; rdfs:label "Sequence position specification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1016 ; + ns2:hasDefinition "A specification (partial or complete) of one or more positions or regions of a molecular sequence or map." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1018 a owl:Class ; +ns1:data_1018 a owl:Class ; rdfs:label "Nucleic acid feature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1015 ; - oboInOwl:hasDefinition "Name or other identifier of an nucleic acid feature." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1015 ; + ns2:hasDefinition "Name or other identifier of an nucleic acid feature." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1019 a owl:Class ; +ns1:data_1019 a owl:Class ; rdfs:label "Protein feature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1015 ; - oboInOwl:hasDefinition "Name or other identifier of a protein feature." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1015 ; + ns2:hasDefinition "Name or other identifier of a protein feature." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1020 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence feature method", "Sequence feature type" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2914 . -:data_1021 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Typically one of the EMBL or Swiss-Prot feature qualifiers." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Feature qualifiers hold information about a feature beyond that provided by the feature key and location." ; - rdfs:subClassOf :data_2914 . + rdfs:subClassOf ns1:data_2914 . -:data_1023 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2099, - :data_3034 . - -:data_1024 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications." ; + ns2:hasExactSynonym "UFO" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3034 . + +ns1:data_1024 a owl:Class ; rdfs:label "Codon name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1276 ; - oboInOwl:hasDefinition "String of one or more ASCII characters representing a codon." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "String of one or more ASCII characters representing a codon." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1028 a owl:Class ; +ns1:data_1028 a owl:Class ; rdfs:label "Gene identifier (NCBI RefSeq)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1027 ; - oboInOwl:hasDefinition "An NCBI RefSeq unique identifier of a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1027 ; + ns2:hasDefinition "An NCBI RefSeq unique identifier of a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1029 a owl:Class ; +ns1:data_1029 a owl:Class ; rdfs:label "Gene identifier (NCBI UniGene)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1104 ; - oboInOwl:hasDefinition "An NCBI UniGene unique identifier of a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1104 ; + ns2:hasDefinition "An NCBI UniGene unique identifier of a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1030 a owl:Class ; +ns1:data_1030 a owl:Class ; rdfs:label "Gene identifier (Entrez)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "[0-9]+" ; - oboInOwl:consider :data_1027 ; - oboInOwl:hasDefinition "An Entrez unique identifier of a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:consider ns1:data_1027 ; + ns2:hasDefinition "An Entrez unique identifier of a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1031 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1032 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a gene or feature from the CGD database." ; + ns2:hasExactSynonym "CGD ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1032 a owl:Class ; rdfs:label "Gene ID (DictyBase)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of a gene from DictyBase." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1033 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a gene from DictyBase." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295, - :data_2610 . - -:data_1034 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a gene (or other feature) from the Ensembl database." ; + ns2:hasExactSynonym "Gene ID (Ensembl)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295, + ns1:data_2610 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295, - :data_2632 . - -:data_1036 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "S[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the SGD database." ; + ns2:hasExactSynonym "SGD identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295, + ns1:data_2632 . + +ns1:data_1036 a owl:Class ; rdfs:label "TIGR identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the TIGR database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109, - :data_2295 . - -:data_1040 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the TIGR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2700 . - -:data_1041 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "1nr3A00" ; + ns2:hasDefinition "Identifier of a protein domain from CATH." ; + ns2:hasExactSynonym "CATH domain identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2700 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1039 . -:data_1042 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "33229" ; + ns2:hasDefinition "Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229." ; + ns2:hasExactSynonym "SCOP unique identifier", "sunid" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1039 . -:data_1044 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1045 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1049 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a species (typically a taxonomic group) of organism." ; + ns2:hasExactSynonym "Organism species" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1:data_1049 a owl:Class ; rdfs:label "Directory name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a directory." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_1051 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a directory." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0582 ], - :data_2099, - :data_2338 . - -:data_1052 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an ontology of biological or bioinformatics concepts and relations." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0582 ], + ns1:data_2099, + ns1:data_2338 . + +ns1:data_1052 a owl:Class ; rdfs:label "URL" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:Link", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Link", "Moby:URL" ; - oboInOwl:hasDefinition "A Uniform Resource Locator (URL)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1047 . + ns2:hasDefinition "A Uniform Resource Locator (URL)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1047 . -:data_1055 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A Life Science Identifier (LSID) - a unique identifier of some data." ; + ns2:hasExactSynonym "Life Science Identifier" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1053 . -:data_1057 a owl:Class ; +ns1:data_1057 a owl:Class ; rdfs:label "Sequence database name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1056 ; - oboInOwl:hasDefinition "The name of a molecular sequence database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1056 ; + ns2:hasDefinition "The name of a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1058 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1050 . - -:data_1059 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a file (of any type) with restricted possible values." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1050 . + +ns1:data_1059 a owl:Class ; rdfs:label "File name extension" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The extension of a file name." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The extension of a file name." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A file extension is the characters appearing after the final '.' in the file name." ; - rdfs:subClassOf :data_1050 . + rdfs:subClassOf ns1:data_1050 . -:data_1060 a owl:Class ; +ns1:data_1060 a owl:Class ; rdfs:label "File base name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The base name of a file." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The base name of a file." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A file base name is the file name stripped of its directory specification and extension." ; - rdfs:subClassOf :data_1050 . + rdfs:subClassOf ns1:data_1050 . -:data_1061 a owl:Class ; +ns1:data_1061 a owl:Class ; rdfs:label "QSAR descriptor name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a QSAR descriptor." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0847 ], - :data_2099, - :data_2110 . - -:data_1062 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a QSAR descriptor." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0847 ], + ns1:data_2099, + ns1:data_2110 . + +ns1:data_1062 a owl:Class ; rdfs:label "Database entry identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type." ; + ns2:inSubset ns4: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 ; +ns1:data_1065 a owl:Class ; rdfs:label "Sequence signature identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1114, + ns1:data_1115 ; + ns2:hasDefinition "Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1066 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0863 ], - :data_0976, - :data_2091 . - -:data_1067 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a molecular sequence alignment, for example a record from an alignment database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0863 ], + ns1:data_0976, + ns1:data_2091 . + +ns1:data_1067 a owl:Class ; rdfs:label "Phylogenetic distance matrix identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0976 ; - oboInOwl:hasDefinition "Identifier of a phylogenetic distance matrix." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0976 ; + ns2:hasDefinition "Identifier of a phylogenetic distance matrix." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1071 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0889 ], - :data_0976 . - -:data_1076 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment)." ; + ns2:hasExactSynonym "Structural profile identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0889 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1598 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name of a codon usage table." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1597 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1597 ], - :data_2099, - :data_2111 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1598 ], + ns1:data_2099, + ns1:data_2111 . -:data_1091 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2113 . - -:data_1092 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an object from the WormBase database, usually a human-readable name." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2113 . + +ns1:data_1092 a owl:Class ; rdfs:label "WormBase class" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Class of an object from the WormBase database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Class of an object from the WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A WormBase class describes the type of object such as 'sequence' or 'protein'." ; - rdfs:subClassOf :data_2113 . + rdfs:subClassOf ns1:data_2113 . -:data_1094 a owl:Class ; +ns1:data_1094 a owl:Class ; rdfs:label "Sequence type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing a type of molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing a type of molecular sequence." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1063, - :data_2099 . - -:data_1099 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications." ; + ns2:hasExactSynonym "EMBOSS USA" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1063, + ns1:data_2099 . + +ns1:data_1099 a owl:Class ; rdfs:label "UniProt accession (extended)" ; - :created_in "beta12orEarlier" ; - :example "Q7M1G0|P43353-2|P01012.107" ; - :obsolete_since "1.0" ; - :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]|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9].[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9].[0-9]+|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9]-[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]-[0-9]+" ; - oboInOwl:consider :data_3021 ; - oboInOwl:hasDefinition "Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "Q7M1G0|P43353-2|P01012.107" ; + ns1:obsolete_since "1.0" ; + ns1: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]|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9].[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9].[0-9]+|[A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9]-[0-9]+|[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]-[0-9]+" ; + ns2:consider ns1:data_3021 ; + ns2:hasDefinition "Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1100 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of PIR sequence database entry." ; + ns2:hasExactSynonym "PIR ID", "PIR accession number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . -:data_1101 a owl:Class ; +ns1:data_1101 a owl:Class ; rdfs:label "TREMBL accession" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.2" ; - oboInOwl:hasDefinition "Identifier of a TREMBL sequence database entry." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_3021 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.2" ; + ns2:hasDefinition "Identifier of a TREMBL sequence database entry." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3021 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1102 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2915 . - -:data_1105 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Primary identifier of a Gramene database entry." ; + ns2:hasExactSynonym "Gramene primary ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2915 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2292, - :data_2728 . - -:data_1106 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a dbEST database entry." ; + ns2:hasExactSynonym "dbEST ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2292, + ns1:data_2728 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_1110 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a dbSNP database entry." ; + ns2:hasExactSynonym "dbSNP identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1:data_1110 a owl:Class ; rdfs:label "EMBOSS sequence type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "The EMBOSS type of a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "The EMBOSS type of a molecular sequence." ; + ns2:inSubset ns4: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 ; +ns1:data_1111 a owl:Class ; rdfs:label "EMBOSS listfile" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2872 ; - oboInOwl:hasDefinition "List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2872 ; + ns2:hasDefinition "List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1113 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . - -:data_1116 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the COG database." ; + ns2:hasExactSynonym "COG ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1114 . - -:data_1117 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the ELMdb database of protein functional sites." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1114 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1114 . - -:data_1118 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PS[0-9]{5}" ; + ns2:hasDefinition "Accession number of an entry from the Prosite database." ; + ns2:hasExactSynonym "Prosite ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1114 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1364 ], - :data_1115, - :data_2091 . - -:data_1119 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier or name of a HMMER hidden Markov model." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1364 ], + ns1:data_1115, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1115, - :data_2091 . - -:data_1120 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier or name of a profile from the JASPAR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1115, + ns1:data_2091 . + +ns1:data_1120 a owl:Class ; rdfs:label "Sequence alignment type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of a sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of a sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_1121 a owl:Class ; rdfs:label "BLAST sequence alignment type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "The type of a BLAST sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "The type of a BLAST sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1122 a owl:Class ; +ns1:data_1122 a owl:Class ; rdfs:label "Phylogenetic tree type" ; - :created_in "beta12orEarlier" ; - :example "nj|upgmp" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "nj|upgmp" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "For example 'nj', 'upgmp' etc." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1123 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1068, - :data_2091 . - -:data_1124 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the TreeBASE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1068, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1068, - :data_2091 . - -:data_1125 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the TreeFam database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1068, + ns1:data_2091 . + +ns1:data_1125 a owl:Class ; rdfs:label "Comparison matrix type" ; - :created_in "beta12orEarlier" ; - :example "blosum|pam|gonnet|id" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of a comparison matrix." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:example "blosum|pam|gonnet|id" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of a comparison matrix." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name or identifier of a comparison matrix." ; + ns2:hasExactSynonym "Substitution matrix name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0874 ], + ns1:data_1069, + ns1:data_2099 . -:data_1127 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9][a-zA-Z_0-9]{3}" ; + ns2:hasDefinition "An identifier of an entry from the PDB database." ; + ns2:hasExactSynonym "PDB identifier", "PDBID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 alpha-numeric, 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 . + rdfs:subClassOf ns1:data_1070, + ns1:data_2091 . -:data_1128 a owl:Class ; +ns1:data_1128 a owl:Class ; rdfs:label "AAindex ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the AAindex database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1073, - :data_2091 . - -:data_1129 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the AAindex database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1073, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_1130 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the BIND database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_1132 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "EBI\\-[0-9]+" ; + ns2:hasDefinition "Accession number of an entry from the IntAct database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an InterPro entry, usually indicating the type of protein matches for that entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1355 ], - :data_1131 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1355 ], + ns1:data_1131 . -:data_1134 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1355 ], - :data_1133 . - -:data_1135 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Secondary accession number of an InterPro entry." ; + ns2:hasExactSynonym "InterPro secondary accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1355 ], + ns1:data_1133 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1136 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the Gene3D database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1137 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PIRSF[0-9]{6}" ; + ns2:hasDefinition "Unique identifier of an entry from the PIRSF database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1138 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PR[0-9]{5}" ; + ns2:hasDefinition "The unique identifier of an entry in the PRINTS database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1139 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PF[0-9]{5}" ; + ns2:hasDefinition "Accession number of a Pfam entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1140 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "SM[0-9]{5}" ; + ns2:hasDefinition "Accession number of an entry from the SMART database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1141 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier (number) of a hidden Markov model from the Superfamily database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_1142 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; + ns2:hasExactSynonym "TIGRFam accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PD[0-9]+" ; + ns2:hasDefinition "A ProDom domain family accession number." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "ProDom is a protein domain family database." ; - rdfs:subClassOf :data_2091, - :data_2910 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . -:data_1143 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2911 . - -:data_1144 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the TRANSFAC database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2911 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_1145 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[AEP]-[a-zA-Z_0-9]{4}-[0-9]+" ; + ns2:hasDefinition "Accession number of an entry from the ArrayExpress database." ; + ns2:hasExactSynonym "ArrayExpress experiment ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_1146 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "PRIDE experiment accession number." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1079, - :data_2091 . - -:data_1147 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the EMDB electron microscopy database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1079, + ns1:data_2091 . + +ns1:data_1147 a owl:Class ; rdfs:label "GEO accession number" ; - :created_in "beta12orEarlier" ; - :regex "o^GDS[0-9]+" ; - oboInOwl:hasDefinition "Accession number of an entry from the GEO database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_1148 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "o^GDS[0-9]+" ; + ns2:hasDefinition "Accession number of an entry from the GEO database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1:data_1148 a owl:Class ; rdfs:label "GermOnline ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the GermOnline database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_1149 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the GermOnline database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1:data_1149 a owl:Class ; rdfs:label "EMAGE ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the EMAGE database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_1151 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the EMAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1:data_1151 a owl:Class ; rdfs:label "HGVbase ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the HGVbase database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1081, - :data_2091 . - -:data_1152 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the HGVbase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1081, + ns1:data_2091 . + +ns1:data_1152 a owl:Class ; rdfs:label "HIVDB identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "Identifier of an entry from the HIVDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Identifier of an entry from the HIVDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1153 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1081, - :data_2091 . - -:data_1155 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[*#+%^]?[0-9]{6}" ; + ns2:hasDefinition "Identifier of an entry from the OMIM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1081, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1156 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "REACT_[0-9]+(\\.[0-9]+)?" ; + ns2:hasDefinition "Identifier of an entry from the Reactome database." ; + ns2:hasExactSynonym "Reactome ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1:data_1156 a owl:Class ; rdfs:label "Pathway ID (aMAZE)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1082 ; - oboInOwl:hasDefinition "Identifier of an entry from the aMAZE database." ; - oboInOwl:hasExactSynonym "aMAZE ID" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1082 ; + ns2:hasDefinition "Identifier of an entry from the aMAZE database." ; + ns2:hasExactSynonym "aMAZE ID" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1157 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2365 . - -:data_1158 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an pathway from the BioCyc biological pathways database." ; + ns2:hasExactSynonym "BioCyc pathway ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1159 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the INOH database." ; + ns2:hasExactSynonym "INOH identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1160 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the PATIKA database." ; + ns2:hasExactSynonym "PATIKA ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB." ; + ns2:hasExactSynonym "CPDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . -:data_1161 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_1162 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PTHR[0-9]{5}" ; + ns2:hasDefinition "Identifier of a biological pathway from the Panther Pathways database." ; + ns2:hasExactSynonym "Panther Pathways ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:example "MIR:00100005" ; + ns1:regex "MIR:[0-9]{8}" ; + ns2:hasDefinition "Unique identifier of a MIRIAM data resource." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_2091, + ns1:data_2902 . -:data_1164 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:example "urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202" ; + ns2:hasDefinition "The URI (URL or URN) of a data entity from the MIRIAM database." ; + ns2:hasExactSynonym "identifiers.org synonym" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_1047, + ns1:data_2091, + ns1:data_2902 . -:data_1166 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A synonymous name of a data type from the MIRIAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A synonymous name for a MIRIAM data type taken from a controlled vocabulary." ; - rdfs:subClassOf :data_1163 . + rdfs:subClassOf ns1:data_1163 . -:data_1167 a owl:Class ; +ns1:data_1167 a owl:Class ; rdfs:label "Taverna workflow ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Unique identifier of a Taverna workflow." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1083, - :data_2091 . - -:data_1170 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a Taverna workflow." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1083, + ns1:data_2091 . + +ns1:data_1170 a owl:Class ; rdfs:label "Biological model name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a biological (mathematical) model." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1085, - :data_2099 . - -:data_1171 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a biological (mathematical) model." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1085, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2891 . - -:data_1172 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(BIOMD|MODEL)[0-9]{10}" ; + ns2:hasDefinition "Unique identifier of an entry from the BioModel database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2891 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2639, - :data_2894 . - -:data_1173 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure." ; + ns2:hasExactSynonym "PubChem compound accession identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2639, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_1174 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the ChemSpider database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "CHEBI:[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the ChEBI database." ; + ns2:hasExactSynonym "ChEBI IDs", "ChEBI identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . -:data_1175 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1177 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the BioPax ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1178 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the MeSH vocabulary." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1179 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the HGNC controlled vocabulary." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "9662|3483|182682" ; + ns1:regex "[1-9][0-9]{0,8}" ; + ns2:hasDefinition "A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database." ; + ns2:hasExactSynonym "NCBI tax ID", "NCBI taxonomy identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091, - :data_2908 . - -:data_1180 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091, + ns1:data_2908 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1181 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the Plant Ontology (PO)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1182 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the UMLS vocabulary." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "FMA:[0-9]+" ; + ns2:hasDefinition "An identifier of a concept from Foundational Model of Anatomy." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . -:data_1183 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1184 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the EMAP mouse ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1185 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the ChEBI ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1186 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the MGED ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a concept from the myGrid ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . -:data_1187 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1088, - :data_2091 . - -:data_1188 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "4963447" ; + ns1:regex "[1-9][0-9]{0,8}" ; + ns2:hasDefinition "PubMed unique identifier of an article." ; + ns2:hasExactSynonym "PMID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1088, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1088, - :data_2091 . - -:data_1189 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(doi\\:)?[0-9]{2}\\.[0-9]{4}/.*" ; + ns2:hasDefinition "Digital Object Identifier (DOI) of a published article." ; + ns2:hasExactSynonym "Digital Object Identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1088, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Medline UI (unique identifier) of an article." ; + ns2:hasExactSynonym "Medline unique identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "The use of Medline UI has been replaced by the PubMed unique identifier." ; - rdfs:subClassOf :data_1088, - :data_2091 . + rdfs:subClassOf ns1:data_1088, + ns1:data_2091 . -:data_1191 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The unique name of a signature (sequence classifier) method." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1190 . -:data_1192 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a BLAST tool." ; + ns2:hasExactSynonym "BLAST name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'." ; - rdfs:subClassOf :data_1190 . + rdfs:subClassOf ns1:data_1190 . -:data_1193 a owl:Class ; +ns1:data_1193 a owl:Class ; rdfs:label "Tool name (FASTA)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a FASTA tool." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a FASTA tool." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'." ; - rdfs:subClassOf :data_1190 . + rdfs:subClassOf ns1:data_1190 . -:data_1194 a owl:Class ; +ns1:data_1194 a owl:Class ; rdfs:label "Tool name (EMBOSS)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of an EMBOSS application." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1190 . - -:data_1195 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of an EMBOSS application." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1190 . + +ns1:data_1195 a owl:Class ; rdfs:label "Tool name (EMBASSY package)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of an EMBASSY package." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1190 . - -:data_1201 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of an EMBASSY package." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1190 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1202 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR constitutional descriptor." ; + ns2:hasExactSynonym "QSAR constitutional descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1203 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR electronic descriptor." ; + ns2:hasExactSynonym "QSAR electronic descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1204 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR geometrical descriptor." ; + ns2:hasExactSynonym "QSAR geometrical descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1205 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR topological descriptor." ; + ns2:hasExactSynonym "QSAR topological descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0847 . - -:data_1236 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR molecular descriptor." ; + ns2:hasExactSynonym "QSAR molecular descriptor" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0847 . + +ns1:data_1236 a owl:Class ; rdfs:label "Psiblast checkpoint file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration." ; + ns2:inSubset ns4: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 ; +ns1:data_1237 a owl:Class ; rdfs:label "HMMER synthetic sequences set" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "Sequences generated by HMMER package in FASTA-style format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "Sequences generated by HMMER package in FASTA-style format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1241 a owl:Class ; +ns1:data_1241 a owl:Class ; rdfs:label "vectorstrip cloning vector definition file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1242 a owl:Class ; +ns1:data_1242 a owl:Class ; rdfs:label "Primer3 internal oligo mishybridizing library" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1243 a owl:Class ; +ns1:data_1243 a owl:Class ; rdfs:label "Primer3 mispriming library file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1244 a owl:Class ; +ns1:data_1244 a owl:Class ; rdfs:label "primersearch primer pairs sequence record" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "File of one or more pairs of primer sequences, as used by EMBOSS primersearch application." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "File of one or more pairs of primer sequences, as used by EMBOSS primersearch application." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1245 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A cluster of protein sequences." ; + ns2:hasExactSynonym "Protein sequence cluster" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The sequences are typically related, for example a family of sequences." ; - rdfs:subClassOf :data_1233, - :data_1235 . + rdfs:subClassOf ns1:data_1233, + ns1:data_1235 . -:data_1250 a owl:Class ; +ns1:data_1250 a owl:Class ; rdfs:label "Word size" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Size of a sequence word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Size of a sequence word." ; + ns2:inSubset ns4: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 ; +ns1:data_1251 a owl:Class ; rdfs:label "Window size" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Size of a sequence window." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Size of a sequence window." ; + ns2:inSubset ns4: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 ; +ns1:data_1252 a owl:Class ; rdfs:label "Sequence length range" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Specification of range(s) of length of sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Specification of range(s) of length of sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1253 a owl:Class ; +ns1:data_1253 a owl:Class ; rdfs:label "Sequence information report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2955 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2955 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1256 a owl:Class ; +ns1:data_1256 a owl:Class ; rdfs:label "Sequence features (comparative)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1255 ; - oboInOwl:hasDefinition "Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1255 ; + ns2:hasDefinition "Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc." ; + ns2:inSubset ns4: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 ; +ns1:data_1257 a owl:Class ; rdfs:label "Sequence property (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0897 ; - oboInOwl:hasDefinition "A report of general sequence properties derived from protein sequence data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0897 ; + ns2:hasDefinition "A report of general sequence properties derived from protein sequence data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1258 a owl:Class ; +ns1:data_1258 a owl:Class ; rdfs:label "Sequence property (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0912 ; - oboInOwl:hasDefinition "A report of general sequence properties derived from nucleotide sequence data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0912 ; + ns2:hasDefinition "A report of general sequence properties derived from nucleotide sequence data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1262 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1233 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on peptide fragments of certain molecular weight(s) in one or more protein sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1233 . -:data_1264 a owl:Class ; +ns1:data_1264 a owl:Class ; rdfs:label "Sequence composition table" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1261 ; - oboInOwl:hasDefinition "A table of character or word composition / frequency of a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1261 ; + ns2:hasDefinition "A table of character or word composition / frequency of a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1265 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1267 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of base frequencies of a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1269 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of amino acid frequencies of a protein sequence." ; + ns2:hasExactSynonym "Sequence composition (amino acid frequencies)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1:data_1269 a owl:Class ; rdfs:label "DAS sequence feature annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1978 ; - oboInOwl:hasDefinition "Annotation of a molecular sequence in DAS format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1978 ; + ns2:hasDefinition "Annotation of a molecular sequence in DAS format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1281 a owl:Class ; +ns1:data_1281 a owl:Class ; rdfs:label "Sequence signature map" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image of a sequence with matches to signatures, motifs or profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image of a sequence with matches to signatures, motifs or profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2969 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1284 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1278 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A gene map showing distances between loci based on relative cotransduction frequencies." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1278 . -:data_1285 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1279 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279 . -:data_1286 a owl:Class ; +ns1:data_1286 a owl:Class ; rdfs:label "Plasmid map" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Sequence map of a plasmid (circular DNA)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1279 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence map of a plasmid (circular DNA)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279 . -:data_1288 a owl:Class ; +ns1:data_1288 a owl:Class ; rdfs:label "Genome map" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Sequence map of a whole genome." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1279 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence map of a whole genome." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279 . -:data_1290 a owl:Class ; +ns1:data_1290 a owl:Class ; rdfs:label "InterPro compact match image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image showing matches between protein sequence(s) and InterPro Entries." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image showing matches between protein sequence(s) and InterPro Entries." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1291 a owl:Class ; rdfs:label "InterPro detailed match image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image showing detailed information on matches between protein sequence(s) and InterPro Entries." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image showing detailed information on matches between protein sequence(s) and InterPro Entries." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1292 a owl:Class ; rdfs:label "InterPro architecture image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Image showing the architecture of InterPro domains in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Image showing the architecture of InterPro domains in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1293 a owl:Class ; rdfs:label "SMART protein schematic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2969 ; - oboInOwl:hasDefinition "SMART protein schematic in PNG format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2969 ; + ns2:hasDefinition "SMART protein schematic in PNG format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1294 a owl:Class ; +ns1:data_1294 a owl:Class ; rdfs:label "GlobPlot domain image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2969 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2969 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1298 a owl:Class ; +ns1:data_1298 a owl:Class ; rdfs:label "Sequence motif matches" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1299 a owl:Class ; +ns1:data_1299 a owl:Class ; rdfs:label "Sequence features (repeats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1255 ; - oboInOwl:hasDefinition "Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1255 ; + ns2:hasDefinition "Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; + ns2:inSubset ns4: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 ; +ns1:data_1300 a owl:Class ; rdfs:label "Gene and transcript structure (report)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0916 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1301 a owl:Class ; +ns1:data_1301 a owl:Class ; rdfs:label "Mobile genetic elements" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "regions of a nucleic acid sequence containing mobile genetic elements." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "regions of a nucleic acid sequence containing mobile genetic elements." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1303 a owl:Class ; +ns1:data_1303 a owl:Class ; rdfs:label "Nucleic acid features (quadruplexes)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3128 ; - oboInOwl:hasDefinition "A report on quadruplex-forming motifs in a nucleotide sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3128 ; + ns2:hasDefinition "A report on quadruplex-forming motifs in a nucleotide sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1306 a owl:Class ; +ns1:data_1306 a owl:Class ; rdfs:label "Nucleosome exclusion sequences" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Report on nucleosome formation potential or exclusion sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on nucleosome formation potential or exclusion sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1309 a owl:Class ; +ns1:data_1309 a owl:Class ; rdfs:label "Gene features (exonic splicing enhancer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "A report on exonic splicing enhancers (ESE) in an exon." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "A report on exonic splicing enhancers (ESE) in an exon." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1310 a owl:Class ; +ns1:data_1310 a owl:Class ; rdfs:label "Nucleic acid features (microRNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1313 a owl:Class ; +ns1:data_1313 a owl:Class ; rdfs:label "Coding region" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1314 a owl:Class ; +ns1:data_1314 a owl:Class ; rdfs:label "Gene features (SECIS element)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0916 ; - oboInOwl:hasDefinition "A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1315 a owl:Class ; +ns1:data_1315 a owl:Class ; rdfs:label "Transcription factor binding sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "transcription factor binding sites (TFBS) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "transcription factor binding sites (TFBS) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1321 a owl:Class ; +ns1:data_1321 a owl:Class ; rdfs:label "Protein features (sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites." ; + ns2:inSubset ns4: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 ; +ns1:data_1322 a owl:Class ; rdfs:label "Protein features report (signal peptides)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "signal peptides or signal peptide cleavage sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "signal peptides or signal peptide cleavage sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1323 a owl:Class ; +ns1:data_1323 a owl:Class ; rdfs:label "Protein features report (cleavage sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1324 a owl:Class ; +ns1:data_1324 a owl:Class ; rdfs:label "Protein features (post-translation modifications)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "post-translation modifications in a protein sequence, typically describing the specific sites involved." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "post-translation modifications in a protein sequence, typically describing the specific sites involved." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1325 a owl:Class ; +ns1:data_1325 a owl:Class ; rdfs:label "Protein features report (active sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "catalytic residues (active site) of an enzyme." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "catalytic residues (active site) of an enzyme." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1326 a owl:Class ; +ns1:data_1326 a owl:Class ; rdfs:label "Protein features report (binding sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1327 a owl:Class ; +ns1:data_1327 a owl:Class ; rdfs:label "Protein features (epitopes)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:comment "Epitope mapping is commonly done during vaccine design." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1328 a owl:Class ; +ns1:data_1328 a owl:Class ; rdfs:label "Protein features report (nucleic acid binding sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1329 a owl:Class ; +ns1:data_1329 a owl:Class ; rdfs:label "MHC Class I epitopes report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1277 ; - oboInOwl:hasDefinition "A report on epitopes that bind to MHC class I molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on epitopes that bind to MHC class I molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1330 a owl:Class ; +ns1:data_1330 a owl:Class ; rdfs:label "MHC Class II epitopes report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1277 ; - oboInOwl:hasDefinition "A report on predicted epitopes that bind to MHC class II molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on predicted epitopes that bind to MHC class II molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1331 a owl:Class ; +ns1:data_1331 a owl:Class ; rdfs:label "Protein features (PEST sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "A report or plot of PEST sites in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "A report or plot of PEST sites in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1338 a owl:Class ; rdfs:label "Sequence database hits scores list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0857 ; - oboInOwl:hasDefinition "Scores from a sequence database search (for example a BLAST search)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0857 ; + ns2:hasDefinition "Scores from a sequence database search (for example a BLAST search)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1339 a owl:Class ; +ns1:data_1339 a owl:Class ; rdfs:label "Sequence database hits alignments list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0857 ; - oboInOwl:hasDefinition "Alignments from a sequence database search (for example a BLAST search)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0857 ; + ns2:hasDefinition "Alignments from a sequence database search (for example a BLAST search)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1340 a owl:Class ; +ns1:data_1340 a owl:Class ; rdfs:label "Sequence database hits evaluation data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0857 ; + ns2:hasDefinition "A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1344 a owl:Class ; +ns1:data_1344 a owl:Class ; rdfs:label "MEME motif alphabet" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "Alphabet for the motifs (patterns) that MEME will search for." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "Alphabet for the motifs (patterns) that MEME will search for." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1345 a owl:Class ; +ns1:data_1345 a owl:Class ; rdfs:label "MEME background frequencies file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "MEME background frequencies file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "MEME background frequencies file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1346 a owl:Class ; +ns1:data_1346 a owl:Class ; rdfs:label "MEME motifs directive file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0950 ; - oboInOwl:hasDefinition "File of directives for ordering and spacing of MEME motifs." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0950 ; + ns2:hasDefinition "File of directives for ordering and spacing of MEME motifs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1348 a owl:Class ; +ns1:data_1348 a owl:Class ; rdfs:label "HMM emission and transition counts" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_3354, + ns1:data_3355 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1352 a owl:Class ; +ns1:data_1352 a owl:Class ; rdfs:label "Regular expression" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Regular expression pattern." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Regular expression pattern." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_1358 a owl:Class ; +ns1:data_1358 a owl:Class ; rdfs:label "Prosite nucleotide pattern" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1353 ; - oboInOwl:hasDefinition "A nucleotide regular expression pattern from the Prosite database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1353 ; + ns2:hasDefinition "A nucleotide regular expression pattern from the Prosite database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1359 a owl:Class ; +ns1:data_1359 a owl:Class ; rdfs:label "Prosite protein pattern" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1353 ; - oboInOwl:hasDefinition "A protein regular expression pattern from the Prosite database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1353 ; + ns2:hasDefinition "A protein regular expression pattern from the Prosite database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1361 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2854 . - -:data_1362 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position." ; + ns2:hasExactSynonym "PFM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2854 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position." ; + ns2:hasExactSynonym "PWM" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Contributions of individual sequences to the matrix might be uneven (weighted)." ; - rdfs:subClassOf :data_2854 . + rdfs:subClassOf ns1:data_2854 . -:data_1363 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2854 . - -:data_1365 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "ICM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2854 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2854 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "One or more fingerprints (sequence classifiers) as used in the PRINTS database." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2854 . -:data_1368 a owl:Class ; +ns1:data_1368 a owl:Class ; rdfs:label "Domainatrix signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1354 ; - oboInOwl:hasDefinition "A protein signature of the type used in the EMBASSY Signature package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1354 ; + ns2:hasDefinition "A protein signature of the type used in the EMBASSY Signature package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1371 a owl:Class ; +ns1:data_1371 a owl:Class ; rdfs:label "HMMER NULL hidden Markov model" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1364 ; - oboInOwl:hasDefinition "NULL hidden Markov model representation used by the HMMER package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1364 ; + ns2:hasDefinition "NULL hidden Markov model representation used by the HMMER package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1372 a owl:Class ; +ns1:data_1372 a owl:Class ; rdfs:label "Protein family signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein family signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein family signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1373 a owl:Class ; rdfs:label "Protein domain signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein domain signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein domain signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1374 a owl:Class ; rdfs:label "Protein region signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein region signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein region signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1375 a owl:Class ; rdfs:label "Protein repeat signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein repeat signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein repeat signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1376 a owl:Class ; rdfs:label "Protein site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1355 ; - oboInOwl:hasDefinition "A protein site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1355 ; + ns2:hasDefinition "A protein site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1377 a owl:Class ; rdfs:label "Protein conserved site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein conserved site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein conserved site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1378 a owl:Class ; rdfs:label "Protein active site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein active site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein active site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1379 a owl:Class ; rdfs:label "Protein binding site signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein binding site signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein binding site signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1380 a owl:Class ; rdfs:label "Protein post-translational modification signature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2071 ; - oboInOwl:hasDefinition "A protein post-translational modification signature (sequence classifier) from the InterPro database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2071 ; + ns2:hasDefinition "A protein post-translational modification signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4: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 ; +ns1:data_1382 a owl:Class ; rdfs:label "Sequence alignment (multiple)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of more than two molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of more than two molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1386 a owl:Class ; +ns1:data_1386 a owl:Class ; rdfs:label "Sequence alignment (nucleic acid pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1381, - :data_1383 ; - oboInOwl:hasDefinition "Alignment of exactly two nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1381, + ns1:data_1383 ; + ns2:hasDefinition "Alignment of exactly two nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1387 a owl:Class ; +ns1:data_1387 a owl:Class ; rdfs:label "Sequence alignment (protein pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1381, - :data_1384 ; - oboInOwl:hasDefinition "Alignment of exactly two protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1381, + ns1:data_1384 ; + ns2:hasDefinition "Alignment of exactly two protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1388 a owl:Class ; +ns1:data_1388 a owl:Class ; rdfs:label "Hybrid sequence alignment (pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1385 ; - oboInOwl:hasDefinition "Alignment of exactly two molecular sequences of different types." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1385 ; + ns2:hasDefinition "Alignment of exactly two molecular sequences of different types." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1389 a owl:Class ; +ns1:data_1389 a owl:Class ; rdfs:label "Multiple nucleotide sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of more than two nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of more than two nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1390 a owl:Class ; +ns1:data_1390 a owl:Class ; rdfs:label "Multiple protein sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0863 ; - oboInOwl:hasDefinition "Alignment of more than two protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0863 ; + ns2:hasDefinition "Alignment of more than two protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1395 a owl:Class ; +ns1:data_1395 a owl:Class ; rdfs:label "Score end gaps control" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Whether end gaps are scored or not." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Whether end gaps are scored or not." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1396 a owl:Class ; +ns1:data_1396 a owl:Class ; rdfs:label "Aligned sequence order" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Controls the order of sequences in an output sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Controls the order of sequences in an output sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1400 a owl:Class ; +ns1:data_1400 a owl:Class ; rdfs:label "Terminal gap penalty" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1410, + ns1:data_1411 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1401 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The score for a 'match' used in various sequence database search applications with simple scoring schemes." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_1402 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_1403 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "This is the threshold drop in score at which extension of word alignment is halted." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_1404 a owl:Class ; +ns1:data_1404 a owl:Class ; rdfs:label "Gap opening penalty (integer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1397 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1397 ; + ns2:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1405 a owl:Class ; +ns1:data_1405 a owl:Class ; rdfs:label "Gap opening penalty (float)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1397 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1397 ; + ns2:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1406 a owl:Class ; +ns1:data_1406 a owl:Class ; rdfs:label "Gap extension penalty (integer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1398 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1398 ; + ns2:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1407 a owl:Class ; +ns1:data_1407 a owl:Class ; rdfs:label "Gap extension penalty (float)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1398 ; - oboInOwl:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1398 ; + ns2:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1408 a owl:Class ; +ns1:data_1408 a owl:Class ; rdfs:label "Gap separation penalty (integer)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1399 ; + ns2:hasDefinition "A simple floating point number defining the penalty for gaps that are close together in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1409 a owl:Class ; +ns1:data_1409 a owl:Class ; rdfs:label "Gap separation penalty (float)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1399 ; + ns2:hasDefinition "A simple floating point number defining the penalty for gaps that are close together in an alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1412 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0865 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0865 . -:data_1414 a owl:Class ; +ns1:data_1414 a owl:Class ; rdfs:label "Sequence alignment metadata (quality report)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "Data on molecular sequence alignment quality (estimated accuracy)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "Data on molecular sequence alignment quality (estimated accuracy)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1415 a owl:Class ; +ns1:data_1415 a owl:Class ; rdfs:label "Sequence alignment report (site conservation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2161 ; - oboInOwl:hasDefinition "Data on character conservation in a molecular sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2161 ; + ns2:hasDefinition "Data on character conservation in a molecular sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_1416 a owl:Class ; rdfs:label "Sequence alignment report (site correlation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0867 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1417 a owl:Class ; +ns1:data_1417 a owl:Class ; rdfs:label "Sequence-profile alignment (Domainatrix signature)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0858 ; - oboInOwl:hasDefinition "Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0858 ; + ns2:hasDefinition "Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1418 a owl:Class ; +ns1:data_1418 a owl:Class ; rdfs:label "Sequence-profile alignment (HMM)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0858 ; - oboInOwl:hasDefinition "Alignment of molecular sequence(s) to a hidden Markov model(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0858 ; + ns2:hasDefinition "Alignment of molecular sequence(s) to a hidden Markov model(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1420 a owl:Class ; +ns1:data_1420 a owl:Class ; rdfs:label "Sequence-profile alignment (fingerprint)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0858 ; - oboInOwl:hasDefinition "Alignment of molecular sequences to a protein fingerprint from the PRINTS database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0858 ; + ns2:hasDefinition "Alignment of molecular sequences to a protein fingerprint from the PRINTS database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1438 a owl:Class ; +ns1:data_1438 a owl:Class ; rdfs:label "Phylogenetic report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees." ; + ns2:inSubset ns4: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 ; +ns1:data_1440 a owl:Class ; rdfs:label "Phylogenetic tree report (tree shape)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2523 ; - oboInOwl:hasDefinition "Data about the shape of a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "Data about the shape of a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1441 a owl:Class ; +ns1:data_1441 a owl:Class ; rdfs:label "Phylogenetic tree report (tree evaluation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2523 ; - oboInOwl:hasDefinition "Data on the confidence of a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "Data on the confidence of a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1443 a owl:Class ; +ns1:data_1443 a owl:Class ; rdfs:label "Phylogenetic tree report (tree stratigraphic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2523 ; - oboInOwl:hasDefinition "Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2523 ; + ns2:hasDefinition "Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1444 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . - -:data_1446 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts." ; + ns2:hasExactSynonym "Phylogenetic report (character contrasts)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . + +ns1:data_1446 a owl:Class ; rdfs:label "Comparison matrix (integers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0874 ; - oboInOwl:hasDefinition "Matrix of integer numbers for sequence comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0874 ; + ns2:hasDefinition "Matrix of integer numbers for sequence comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1447 a owl:Class ; +ns1:data_1447 a owl:Class ; rdfs:label "Comparison matrix (floats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0874 ; - oboInOwl:hasDefinition "Matrix of floating point numbers for sequence comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0874 ; + ns2:hasDefinition "Matrix of floating point numbers for sequence comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1450 a owl:Class ; +ns1:data_1450 a owl:Class ; rdfs:label "Nucleotide comparison matrix (integers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1448 ; - oboInOwl:hasDefinition "Matrix of integer numbers for nucleotide comparison." ; - oboInOwl:hasExactSynonym "Nucleotide substitution matrix (integers)" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1448 ; + ns2:hasDefinition "Matrix of integer numbers for nucleotide comparison." ; + ns2:hasExactSynonym "Nucleotide substitution matrix (integers)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1451 a owl:Class ; +ns1:data_1451 a owl:Class ; rdfs:label "Nucleotide comparison matrix (floats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1448 ; - oboInOwl:hasDefinition "Matrix of floating point numbers for nucleotide comparison." ; - oboInOwl:hasExactSynonym "Nucleotide substitution matrix (floats)" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1448 ; + ns2:hasDefinition "Matrix of floating point numbers for nucleotide comparison." ; + ns2:hasExactSynonym "Nucleotide substitution matrix (floats)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1452 a owl:Class ; +ns1:data_1452 a owl:Class ; rdfs:label "Amino acid comparison matrix (integers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1449 ; - oboInOwl:hasDefinition "Matrix of integer numbers for amino acid comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1449 ; + ns2:hasDefinition "Matrix of integer numbers for amino acid comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1453 a owl:Class ; +ns1:data_1453 a owl:Class ; rdfs:label "Amino acid comparison matrix (floats)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1449 ; - oboInOwl:hasDefinition "Matrix of floating point numbers for amino acid comparison." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1449 ; + ns2:hasDefinition "Matrix of floating point numbers for amino acid comparison." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1466 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1465 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1465 . -:data_1469 a owl:Class ; +ns1:data_1469 a owl:Class ; rdfs:label "Protein structure (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1460 ; - oboInOwl:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (all atoms)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1460 ; + ns2:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (all atoms)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1470 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only)." ; + ns2:hasExactSynonym "Protein structure (C-alpha atoms)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; - rdfs:subClassOf :data_1460 . + rdfs:subClassOf ns1:data_1460 . -:data_1471 a owl:Class ; +ns1:data_1471 a owl:Class ; rdfs:label "Protein chain (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1467 ; - oboInOwl:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1467 ; + ns2:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1472 a owl:Class ; +ns1:data_1472 a owl:Class ; rdfs:label "Protein chain (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1467 ; + ns2:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only)." ; + ns2:inSubset ns4: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 ; +ns1:data_1473 a owl:Class ; rdfs:label "Protein domain (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1468 ; - oboInOwl:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1468 ; + ns2:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1474 a owl:Class ; +ns1:data_1474 a owl:Class ; rdfs:label "Protein domain (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1468 ; + ns2:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only)." ; + ns2:inSubset ns4: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 ; +ns1:data_1480 a owl:Class ; rdfs:label "Structure alignment (multiple)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0886 ; - oboInOwl:hasDefinition "Alignment (superimposition) of more than two molecular tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0886 ; + ns2:hasDefinition "Alignment (superimposition) of more than two molecular tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1483 a owl:Class ; +ns1:data_1483 a owl:Class ; rdfs:label "Structure alignment (protein pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1479, - :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1479, + ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1484 a owl:Class ; +ns1:data_1484 a owl:Class ; rdfs:label "Multiple protein tertiary structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of more than two protein tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of more than two protein tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1485 a owl:Class ; +ns1:data_1485 a owl:Class ; rdfs:label "Structure alignment (protein all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1486 a owl:Class ; +ns1:data_1486 a owl:Class ; rdfs:label "Structure alignment (protein C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + ns2:inSubset ns4: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 ; +ns1:data_1487 a owl:Class ; rdfs:label "Pairwise protein tertiary structure alignment (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1488 a owl:Class ; +ns1:data_1488 a owl:Class ; rdfs:label "Pairwise protein tertiary structure alignment (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + ns2:inSubset ns4: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 ; +ns1:data_1489 a owl:Class ; rdfs:label "Multiple protein tertiary structure alignment (all atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1490 a owl:Class ; +ns1:data_1490 a owl:Class ; rdfs:label "Multiple protein tertiary structure alignment (C-alpha atoms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1481 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1481 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + ns2:inSubset ns4: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 ; +ns1:data_1491 a owl:Class ; rdfs:label "Structure alignment (nucleic acid pair)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :data_1479, - :data_1482 ; - oboInOwl:hasDefinition "Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_1479, + ns1:data_1482 ; + ns2:hasDefinition "Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1492 a owl:Class ; +ns1:data_1492 a owl:Class ; rdfs:label "Multiple nucleic acid tertiary structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1482 ; - oboInOwl:hasDefinition "Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1482 ; + ns2:hasDefinition "Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1493 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1482 . - -:data_1494 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of RNA tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (RNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1482 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . -:data_1495 a owl:Class ; +ns1:data_1495 a owl:Class ; rdfs:label "DaliLite hit table" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0887 ; - oboInOwl:hasDefinition "DaliLite hit table of protein chain tertiary structure alignment data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0887 ; + ns2:hasDefinition "DaliLite hit table of protein chain tertiary structure alignment data." ; + ns2:inSubset ns4: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 ; +ns1:data_1496 a owl:Class ; rdfs:label "Molecular similarity score" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0888 ; - oboInOwl:hasDefinition "A score reflecting structural similarities of two molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0888 ; + ns2:hasDefinition "A score reflecting structural similarities of two molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1497 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0888 . - -:data_1498 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates." ; + ns2:hasExactSynonym "RMSD" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0888 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A measure of the similarity between two ligand fingerprints." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0888 . -:data_1502 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1503 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids." ; + ns2:hasExactSynonym "Chemical classes (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2016 . - -:data_1505 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Statistical protein contact potentials." ; + ns2:hasExactSynonym "Contact potentials (amino acid pair-wise)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2016 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1506 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Molecular weights of amino acids." ; + ns2:hasExactSynonym "Molecular weight (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1507 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Hydrophobic, hydrophilic or charge properties of amino acids." ; + ns2:hasExactSynonym "Hydropathy (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1508 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Experimental free energy values for the water-interface and water-octanol transitions for the amino acids." ; + ns2:hasExactSynonym "White-Wimley data (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1501 . - -:data_1509 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Van der Waals radii of atoms for different amino acid residues." ; + ns2:hasExactSynonym "van der Waals radii (amino acids)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1501 . + +ns1:data_1509 a owl:Class ; rdfs:label "Enzyme report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "An informative report on a specific enzyme." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on a specific enzyme." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1517 a owl:Class ; +ns1:data_1517 a owl:Class ; rdfs:label "Restriction enzyme report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "An informative report on a specific restriction enzyme such as enzyme reference data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on a specific restriction enzyme such as enzyme reference data." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; - rdfs:subClassOf :data_2970 . + rdfs:subClassOf ns1:data_2970 . -:data_1523 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1529 a owl:Class ; +ns1:data_1529 a owl:Class ; rdfs:label "Protein pKa value" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The pKa value of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The pKa value of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1532 a owl:Class ; +ns1:data_1532 a owl:Class ; rdfs:label "Protein optical density" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The optical density of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The optical density of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1533 a owl:Class ; +ns1:data_1533 a owl:Class ; rdfs:label "Protein subcellular localisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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:hasExactSynonym "Protein report (subcellular localisation)" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins)." ; + ns2:hasExactSynonym "Protein report (subcellular localisation)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1536 a owl:Class ; +ns1:data_1536 a owl:Class ; rdfs:label "MHC peptide immunogenicity report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1534 ; - oboInOwl:hasDefinition "A report on the immunogenicity of MHC class I or class II binding peptides." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1534 ; + ns2:hasDefinition "A report on the immunogenicity of MHC class I or class II binding peptides." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1540 a owl:Class ; +ns1:data_1540 a owl:Class ; rdfs:label "Protein non-covalent interactions report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1541 a owl:Class ; +ns1:data_1541 a owl:Class ; rdfs:label "Protein flexibility or motion report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "Informative report on flexibility or motion of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "Informative report on flexibility or motion of a protein structure." ; + ns2:inSubset ns4: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 ; +ns1:data_1543 a owl:Class ; rdfs:label "Protein surface report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure." ; + ns2:inSubset ns4: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 ; +ns1:data_1550 a owl:Class ; rdfs:label "Protein non-canonical interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_1537 ; - oboInOwl:hasDefinition "Non-canonical atomic interactions in protein structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1537 ; + ns2:hasDefinition "Non-canonical atomic interactions in protein structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1553 a owl:Class ; +ns1:data_1553 a owl:Class ; rdfs:label "CATH node" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a node from the CATH database." ; + ns2:inSubset ns4: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 ; +ns1:data_1554 a owl:Class ; rdfs:label "SCOP node" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1555 a owl:Class ; +ns1:data_1555 a owl:Class ; rdfs:label "EMBASSY domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0907 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0907 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1556 a owl:Class ; +ns1:data_1556 a owl:Class ; rdfs:label "CATH class" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'class' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'class' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1557 a owl:Class ; +ns1:data_1557 a owl:Class ; rdfs:label "CATH architecture" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'architecture' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'architecture' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1558 a owl:Class ; +ns1:data_1558 a owl:Class ; rdfs:label "CATH topology" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'topology' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'topology' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1559 a owl:Class ; +ns1:data_1559 a owl:Class ; rdfs:label "CATH homologous superfamily" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'homologous superfamily' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'homologous superfamily' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1560 a owl:Class ; +ns1:data_1560 a owl:Class ; rdfs:label "CATH structurally similar group" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'structurally similar group' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'structurally similar group' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1561 a owl:Class ; +ns1:data_1561 a owl:Class ; rdfs:label "CATH functional category" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a protein 'functional category' node from the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a protein 'functional category' node from the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1564 a owl:Class ; +ns1:data_1564 a owl:Class ; rdfs:label "Protein fold recognition report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_1565 a owl:Class ; rdfs:label "Protein-protein interaction report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "protein-protein interaction(s), including interactions between protein domains." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "protein-protein interaction(s), including interactions between protein domains." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1567 a owl:Class ; +ns1:data_1567 a owl:Class ; rdfs:label "Protein-nucleic acid interactions report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "protein-DNA/RNA interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "protein-DNA/RNA interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1585 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2985 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2985 . -:data_1586 a owl:Class ; +ns1:data_1586 a owl:Class ; rdfs:label "Nucleic acid melting temperature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2139 ; - oboInOwl:hasDefinition "Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2139 ; + ns2:hasDefinition "Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1587 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583 ; + ns2:hasDefinition "Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1588 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA base pair stacking energies data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_1589 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA base pair twist angle data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_1590 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA base trimer roll angles data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_1591 a owl:Class ; +ns1:data_1591 a owl:Class ; rdfs:label "Vienna RNA parameters" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "RNA parameters used by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "RNA parameters used by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1592 a owl:Class ; +ns1:data_1592 a owl:Class ; rdfs:label "Vienna RNA structure constraints" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Structure constraints used by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Structure constraints used by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1593 a owl:Class ; +ns1:data_1593 a owl:Class ; rdfs:label "Vienna RNA concentration data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "RNA concentration data used by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "RNA concentration data used by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1594 a owl:Class ; +ns1:data_1594 a owl:Class ; rdfs:label "Vienna RNA calculated energy" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1584 ; - oboInOwl:hasDefinition "RNA calculated energy data generated by the Vienna package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1584 ; + ns2:hasDefinition "RNA calculated energy data generated by the Vienna package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1595 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dotplot of RNA base pairing probability matrix." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Such as generated by the Vienna package." ; - rdfs:subClassOf :data_2088, - :data_2884 . + rdfs:subClassOf ns1:data_2088, + ns1:data_2884 . -:data_1599 a owl:Class ; +ns1:data_1599 a owl:Class ; rdfs:label "Codon adaptation index" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2865 ; - oboInOwl:hasDefinition "A simple measure of synonymous codon usage bias often used to predict gene expression levels." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2865 ; + ns2:hasDefinition "A simple measure of synonymous codon usage bias often used to predict gene expression levels." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1600 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0914 . - -:data_1601 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of the synonymous codon usage calculated for windows over a nucleotide sequence." ; + ns2:hasExactSynonym "Synonymous codon usage statistic plot" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0914 . + +ns1:data_1601 a owl:Class ; rdfs:label "Nc statistic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2865 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1621 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about the influence of genotype on drug response." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." ; - rdfs:subClassOf :data_0920 . + rdfs:subClassOf ns1:data_0920 . -:data_1634 a owl:Class ; +ns1:data_1634 a owl:Class ; rdfs:label "Linkage disequilibrium (report)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0927 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0927 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1642 a owl:Class ; +ns1:data_1642 a owl:Class ; rdfs:label "Affymetrix probe sets library file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2717 ; - oboInOwl:hasDefinition "Affymetrix library file of information about which probes belong to which probe set." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2717 ; + ns2:hasDefinition "Affymetrix library file of information about which probes belong to which probe set." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1643 a owl:Class ; +ns1:data_1643 a owl:Class ; rdfs:label "Affymetrix probe sets information library file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2717 ; + ns2:hasDefinition "Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated." ; + ns2:hasRelatedSynonym "GIN file" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1646 a owl:Class ; +ns1:data_1646 a owl:Class ; rdfs:label "Molecular weights standard fingerprint" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0944 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0944 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1656 a owl:Class ; +ns1:data_1656 a owl:Class ; rdfs:label "Metabolic pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report typically including a map (diagram) of a metabolic pathway." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report typically including a map (diagram) of a metabolic pathway." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_1657 a owl:Class ; rdfs:label "Genetic information processing pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "genetic information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "genetic information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1658 a owl:Class ; +ns1:data_1658 a owl:Class ; rdfs:label "Environmental information processing pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "environmental information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "environmental information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1659 a owl:Class ; +ns1:data_1659 a owl:Class ; rdfs:label "Signal transduction pathway report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report typically including a map (diagram) of a signal transduction pathway." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report typically including a map (diagram) of a signal transduction pathway." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1660 a owl:Class ; +ns1:data_1660 a owl:Class ; rdfs:label "Cellular process pathways report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Topic concernning cellular process pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Topic concernning cellular process pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1661 a owl:Class ; +ns1:data_1661 a owl:Class ; rdfs:label "Disease pathway or network report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "disease pathways, typically of human disease." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0906 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "disease pathways, typically of human disease." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0906 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1662 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1696 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1696 ; + ns2:hasDefinition "A report typically including a map (diagram) of drug structure relationships." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1696 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1663 a owl:Class ; +ns1:data_1663 a owl:Class ; rdfs:label "Protein interaction networks" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_2600 ; - oboInOwl:hasDefinition "networks of protein interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_2600 ; + ns2:hasDefinition "networks of protein interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1664 a owl:Class ; +ns1:data_1664 a owl:Class ; rdfs:label "MIRIAM datatype" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1883 ; + ns2:hasDefinition "An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A simple floating point number defining the lower or upper limit of an expectation value (E-value)." ; + ns2:hasExactSynonym "Expectation value" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0951 . -:data_1668 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The z-value is the number of standard deviations a data value is above or below a mean value." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A z-value might be specified as a threshold for reporting hits from database searches." ; - rdfs:subClassOf :data_0951 . + rdfs:subClassOf ns1:data_0951 . -:data_1669 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A z-value might be specified as a threshold for reporting hits from database searches." ; - rdfs:subClassOf :data_0951 . + rdfs:subClassOf ns1:data_0951 . -:data_1670 a owl:Class ; +ns1:data_1670 a owl:Class ; rdfs:label "Database version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "Information on a database (or ontology) version, for example name, version number and release date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "Information on a database (or ontology) version, for example name, version number and release date." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1671 a owl:Class ; +ns1:data_1671 a owl:Class ; rdfs:label "Tool version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0958 ; - oboInOwl:hasDefinition "Information on an application version, for example name, version number and release date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0958 ; + ns2:hasDefinition "Information on an application version, for example name, version number and release date." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1672 a owl:Class ; +ns1:data_1672 a owl:Class ; rdfs:label "CATH version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Information on a version of the CATH database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Information on a version of the CATH database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1673 a owl:Class ; +ns1:data_1673 a owl:Class ; rdfs:label "Swiss-Prot to PDB mapping" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0954 ; - oboInOwl:hasDefinition "Cross-mapping of Swiss-Prot codes to PDB identifiers." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0954 ; + ns2:hasDefinition "Cross-mapping of Swiss-Prot codes to PDB identifiers." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1674 a owl:Class ; +ns1:data_1674 a owl:Class ; rdfs:label "Sequence database cross-references" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2093 ; - oboInOwl:hasDefinition "Cross-references from a sequence record to other databases." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2093 ; + ns2:hasDefinition "Cross-references from a sequence record to other databases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1675 a owl:Class ; +ns1:data_1675 a owl:Class ; rdfs:label "Job status" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Metadata on the status of a submitted job." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Metadata on the status of a submitted job." ; + ns2:inSubset ns4: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 ; +ns1:data_1676 a owl:Class ; rdfs:label "Job ID" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "The (typically numeric) unique identifier of a submitted job." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "The (typically numeric) unique identifier of a submitted job." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1677 a owl:Class ; +ns1:data_1677 a owl:Class ; rdfs:label "Job type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0842 ; - oboInOwl:hasDefinition "A label (text token) describing the type of job, for example interactive or non-interactive." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing the type of job, for example interactive or non-interactive." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1678 a owl:Class ; +ns1:data_1678 a owl:Class ; rdfs:label "Tool log" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1679 a owl:Class ; +ns1:data_1679 a owl:Class ; rdfs:label "DaliLite log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1680 a owl:Class ; +ns1:data_1680 a owl:Class ; rdfs:label "STRIDE log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "STRIDE log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "STRIDE log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1681 a owl:Class ; +ns1:data_1681 a owl:Class ; rdfs:label "NACCESS log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "NACCESS log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "NACCESS log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1682 a owl:Class ; +ns1:data_1682 a owl:Class ; rdfs:label "EMBOSS wordfinder log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS wordfinder log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS wordfinder log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1683 a owl:Class ; +ns1:data_1683 a owl:Class ; rdfs:label "EMBOSS domainatrix log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS (EMBASSY) domainatrix application log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS (EMBASSY) domainatrix application log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1684 a owl:Class ; +ns1:data_1684 a owl:Class ; rdfs:label "EMBOSS sites log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS (EMBASSY) sites application log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS (EMBASSY) sites application log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1685 a owl:Class ; +ns1:data_1685 a owl:Class ; rdfs:label "EMBOSS supermatcher error file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS (EMBASSY) supermatcher error file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS (EMBASSY) supermatcher error file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1686 a owl:Class ; +ns1:data_1686 a owl:Class ; rdfs:label "EMBOSS megamerger log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS megamerger log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS megamerger log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1687 a owl:Class ; +ns1:data_1687 a owl:Class ; rdfs:label "EMBOSS whichdb log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS megamerger log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS megamerger log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1688 a owl:Class ; +ns1:data_1688 a owl:Class ; rdfs:label "EMBOSS vectorstrip log file" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "EMBOSS vectorstrip log file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "EMBOSS vectorstrip log file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1689 a owl:Class ; +ns1:data_1689 a owl:Class ; rdfs:label "Username" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A username on a computer system." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2101 . - -:data_1690 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A username on a computer system." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2101 . + +ns1:data_1690 a owl:Class ; rdfs:label "Password" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A password on a computer system." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2101 . - -:data_1691 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A password on a computer system." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2101 . + +ns1:data_1691 a owl:Class ; rdfs:label "Email address" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:Email", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Email", "Moby:EmailAddress" ; - oboInOwl:hasDefinition "A valid email address of an end-user." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2101 . + ns2:hasDefinition "A valid email address of an end-user." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2101 . -:data_1692 a owl:Class ; +ns1:data_1692 a owl:Class ; rdfs:label "Person name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a person." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2118 . - -:data_1693 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a person." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2118 . + +ns1:data_1693 a owl:Class ; rdfs:label "Number of iterations" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Number of iterations of an algorithm." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Number of iterations of an algorithm." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1694 a owl:Class ; +ns1:data_1694 a owl:Class ; rdfs:label "Number of output entities" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Number of entities (for example database hits, sequences, alignments etc) to write to an output file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Number of entities (for example database hits, sequences, alignments etc) to write to an output file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1695 a owl:Class ; +ns1:data_1695 a owl:Class ; rdfs:label "Hit sort order" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Controls the order of hits (reported matches) in an output file from a database search." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Controls the order of hits (reported matches) in an output file from a database search." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1707 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "See also 'Phylogenetic tree'" ; - rdfs:subClassOf :data_2968 . + rdfs:subClassOf ns1:data_2968 . -:data_1708 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of RNA secondary structure, knots, pseudoknots etc." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_1711 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of two or more aligned molecular sequences possibly annotated with alignment features." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_1715 a owl:Class ; +ns1:data_1715 a owl:Class ; rdfs:label "BioPax term" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the BioPax ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the BioPax ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1716 a owl:Class ; +ns1:data_1716 a owl:Class ; rdfs:label "GO" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term definition from The Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term definition from The Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1717 a owl:Class ; +ns1:data_1717 a owl:Class ; rdfs:label "MeSH" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the MeSH vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the MeSH vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1718 a owl:Class ; +ns1:data_1718 a owl:Class ; rdfs:label "HGNC" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the HGNC controlled vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the HGNC controlled vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1719 a owl:Class ; +ns1:data_1719 a owl:Class ; rdfs:label "NCBI taxonomy vocabulary" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the NCBI taxonomy vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the NCBI taxonomy vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1720 a owl:Class ; +ns1:data_1720 a owl:Class ; rdfs:label "Plant ontology term" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the Plant Ontology (PO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the Plant Ontology (PO)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1721 a owl:Class ; +ns1:data_1721 a owl:Class ; rdfs:label "UMLS" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the UMLS vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the UMLS vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1722 a owl:Class ; +ns1:data_1722 a owl:Class ; rdfs:label "FMA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from Foundational Model of Anatomy." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from Foundational Model of Anatomy." ; + ns2:inSubset ns4: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 ; +ns1:data_1723 a owl:Class ; rdfs:label "EMAP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the EMAP mouse ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the EMAP mouse ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1724 a owl:Class ; +ns1:data_1724 a owl:Class ; rdfs:label "ChEBI" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the ChEBI ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the ChEBI ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1725 a owl:Class ; +ns1:data_1725 a owl:Class ; rdfs:label "MGED" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the MGED ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the MGED ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1726 a owl:Class ; +ns1:data_1726 a owl:Class ; rdfs:label "myGrid" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0966 ; - oboInOwl:hasDefinition "A term from the myGrid ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0966 ; + ns2:hasDefinition "A term from the myGrid ontology." ; + ns2:inSubset ns4: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 ; +ns1:data_1727 a owl:Class ; rdfs:label "GO (biological process)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2858 ; - oboInOwl:hasDefinition "A term definition for a biological process from the Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2858 ; + ns2:hasDefinition "A term definition for a biological process from the Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Data Type is an enumerated string." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1728 a owl:Class ; +ns1:data_1728 a owl:Class ; rdfs:label "GO (molecular function)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2858 ; - oboInOwl:hasDefinition "A term definition for a molecular function from the Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2858 ; + ns2:hasDefinition "A term definition for a molecular function from the Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Data Type is an enumerated string." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1729 a owl:Class ; +ns1:data_1729 a owl:Class ; rdfs:label "GO (cellular component)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2858 ; - oboInOwl:hasDefinition "A term definition for a cellular component from the Gene Ontology (GO)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2858 ; + ns2:hasDefinition "A term definition for a cellular component from the Gene Ontology (GO)." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Data Type is an enumerated string." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1730 a owl:Class ; +ns1:data_1730 a owl:Class ; rdfs:label "Ontology relation type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0967 ; - oboInOwl:hasDefinition "A relation type defined in an ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0967 ; + ns2:hasDefinition "A relation type defined in an ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1731 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0967 . - -:data_1732 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The definition of a concept from an ontology." ; + ns2:hasExactSynonym "Ontology class definition" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0967 . + +ns1:data_1732 a owl:Class ; rdfs:label "Ontology concept comment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0967 ; - oboInOwl:hasDefinition "A comment on a concept from an ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0967 ; + ns2:hasDefinition "A comment on a concept from an ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1733 a owl:Class ; +ns1:data_1733 a owl:Class ; rdfs:label "Ontology concept reference" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2093 ; - oboInOwl:hasDefinition "Reference for a concept from an ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2093 ; + ns2:hasDefinition "Reference for a concept from an ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1738 a owl:Class ; +ns1:data_1738 a owl:Class ; rdfs:label "doc2loc document information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0970 ; - oboInOwl:hasDefinition "Information on a published article provided by the doc2loc program." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0970 ; + ns2:hasDefinition "Information on a published article provided by the doc2loc program." ; + ns2:inSubset ns4: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 ; +ns1:data_1742 a owl:Class ; rdfs:label "PDB residue number" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:PDB_residue_no", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "PDBML:PDB_residue_no", "WHATIF: pdb_number" ; - oboInOwl:hasDefinition "A residue identifier (a string) from a PDB file." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1016 . + ns2:hasDefinition "A residue identifier (a string) from a PDB file." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1016 . -:data_1744 a owl:Class ; +ns1:data_1744 a owl:Class ; rdfs:label "Atomic x coordinate" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.21" ; - :oldParent :data_1743 ; - oboInOwl:hasDbXref "PDBML:_atom_site.Cartn_x in PDBML", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1743 ; + ns2:hasDbXref "PDBML:_atom_site.Cartn_x in PDBML", "WHATIF: PDBx_Cartn_x" ; - oboInOwl:hasDefinition "Cartesian x coordinate of an atom (in a molecular structure)." ; - oboInOwl:hasExactSynonym "Cartesian x coordinate" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1743 ; + ns2:hasDefinition "Cartesian x coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian x coordinate" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1743 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1745 a owl:Class ; +ns1:data_1745 a owl:Class ; rdfs:label "Atomic y coordinate" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.21" ; - :oldParent :data_1743 ; - oboInOwl:hasDbXref "PDBML:_atom_site.Cartn_y in PDBML", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1743 ; + ns2:hasDbXref "PDBML:_atom_site.Cartn_y in PDBML", "WHATIF: PDBx_Cartn_y" ; - oboInOwl:hasDefinition "Cartesian y coordinate of an atom (in a molecular structure)." ; - oboInOwl:hasExactSynonym "Cartesian y coordinate" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1743 ; + ns2:hasDefinition "Cartesian y coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian y coordinate" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1743 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1746 a owl:Class ; +ns1:data_1746 a owl:Class ; rdfs:label "Atomic z coordinate" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.21" ; - :oldParent :data_1743 ; - oboInOwl:hasDbXref "PDBML:_atom_site.Cartn_z", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1743 ; + ns2:hasDbXref "PDBML:_atom_site.Cartn_z", "WHATIF: PDBx_Cartn_z" ; - oboInOwl:hasDefinition "Cartesian z coordinate of an atom (in a molecular structure)." ; - oboInOwl:hasExactSynonym "Cartesian z coordinate" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1743 ; + ns2:hasDefinition "Cartesian z coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian z coordinate" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1743 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1748 a owl:Class ; +ns1:data_1748 a owl:Class ; rdfs:label "PDB atom name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_atom_name", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1757 . + ns2:hasDefinition "Identifier (a string) of a specific atom from a PDB file for a molecular structure." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1757 . -:data_1755 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on a single atom from a protein structure." ; + ns2:hasExactSynonym "Atom data" ; + ns2:hasRelatedSynonym "CHEBI:33250" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1460 . -:data_1756 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on a single amino acid residue position in a protein structure." ; + ns2:hasExactSynonym "Residue" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1460 . -:data_1758 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2564 . - -:data_1759 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: type" ; + ns2:hasDefinition "Three-letter amino acid residue names as used in PDB files." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2564 . + +ns1:data_1759 a owl:Class ; rdfs:label "PDB model number" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_model_num", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3035 . - -:data_1762 a owl:Class ; + ns2:hasDefinition "Identifier of a model structure from a PDB file." ; + ns2:hasExactSynonym "Model number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3035 . + +ns1:data_1762 a owl:Class ; rdfs:label "CATH domain report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Summary of domain classification information for a CATH domain." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Summary of domain classification information for a CATH domain." ; + ns2:inSubset ns4: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 ; +ns1:data_1764 a owl:Class ; rdfs:label "CATH representative domain sequences (ATOM)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1235 ; + ns2:hasDefinition "FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1765 a owl:Class ; +ns1:data_1765 a owl:Class ; rdfs:label "CATH representative domain sequences (COMBS)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1235 ; + ns2:hasDefinition "FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1766 a owl:Class ; +ns1:data_1766 a owl:Class ; rdfs:label "CATH domain sequences (ATOM)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "FASTA sequence database for all CATH domains (based on PDB ATOM records)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "FASTA sequence database for all CATH domains (based on PDB ATOM records)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1767 a owl:Class ; +ns1:data_1767 a owl:Class ; rdfs:label "CATH domain sequences (COMBS)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "FASTA sequence database for all CATH domains (based on COMBS sequence data)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "FASTA sequence database for all CATH domains (based on COMBS sequence data)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1771 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . - -:data_1776 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Information on an molecular sequence version." ; + ns2:hasExactSynonym "Sequence version information" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . + +ns1:data_1776 a owl:Class ; rdfs:label "Protein report (function)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "Report on general functional properties of specific protein(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "Report on general functional properties of specific protein(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_1783 a owl:Class ; rdfs:label "Gene name (ASPGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ASPGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Aspergillus Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ASPGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Aspergillus Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1784 a owl:Class ; +ns1:data_1784 a owl:Class ; rdfs:label "Gene name (CGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:CGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Candida Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:CGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Candida Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1785 a owl:Class ; +ns1:data_1785 a owl:Class ; rdfs:label "Gene name (dictyBase)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:dictyBase" ; - oboInOwl:hasDefinition "Name of a gene from dictyBase database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:dictyBase" ; + ns2:hasDefinition "Name of a gene from dictyBase database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1786 a owl:Class ; +ns1:data_1786 a owl:Class ; rdfs:label "Gene name (EcoGene primary)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ECOGENE_G" ; - oboInOwl:hasDefinition "Primary name of a gene from EcoGene Database." ; - oboInOwl:hasExactSynonym "EcoGene primary gene name" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:ECOGENE_G" ; + ns2:hasDefinition "Primary name of a gene from EcoGene Database." ; + ns2:hasExactSynonym "EcoGene primary gene name" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1787 a owl:Class ; +ns1:data_1787 a owl:Class ; rdfs:label "Gene name (MaizeGDB)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:MaizeGDB_Locus" ; - oboInOwl:hasDefinition "Name of a gene from MaizeGDB (maize genes) database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:MaizeGDB_Locus" ; + ns2:hasDefinition "Name of a gene from MaizeGDB (maize genes) database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1788 a owl:Class ; +ns1:data_1788 a owl:Class ; rdfs:label "Gene name (SGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:SGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Saccharomyces Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:SGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Saccharomyces Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1789 a owl:Class ; +ns1:data_1789 a owl:Class ; rdfs:label "Gene name (TGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:TGD_LOCUS" ; - oboInOwl:hasDefinition "Name of a gene from Tetrahymena Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:TGD_LOCUS" ; + ns2:hasDefinition "Name of a gene from Tetrahymena Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1790 a owl:Class ; +ns1:data_1790 a owl:Class ; rdfs:label "Gene name (CGSC)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGSC" ; - oboInOwl:hasDefinition "Symbol of a gene from E.coli Genetic Stock Center." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGSC" ; + ns2:hasDefinition "Symbol of a gene from E.coli Genetic Stock Center." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1791 a owl:Class ; +ns1:data_1791 a owl:Class ; rdfs:label "Gene name (HGNC)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - :regex "HGNC:[0-9]{1,5}" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: HGNC_gene" ; - oboInOwl:hasDefinition "Symbol of a gene approved by the HUGO Gene Nomenclature Committee." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns1:regex "HGNC:[0-9]{1,5}" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: HGNC_gene" ; + ns2:hasDefinition "Symbol of a gene approved by the HUGO Gene Nomenclature Committee." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1792 a owl:Class ; +ns1:data_1792 a owl:Class ; rdfs:label "Gene name (MGD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - :regex "MGI:[0-9]+" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: MGD" ; - oboInOwl:hasDefinition "Symbol of a gene from the Mouse Genome Database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns1:regex "MGI:[0-9]+" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: MGD" ; + ns2:hasDefinition "Symbol of a gene from the Mouse Genome Database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1793 a owl:Class ; +ns1:data_1793 a owl:Class ; rdfs:label "Gene name (Bacillus subtilis)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SUBTILISTG" ; - oboInOwl:hasDefinition "Symbol of a gene from Bacillus subtilis Genome Sequence Project." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SUBTILISTG" ; + ns2:hasDefinition "Symbol of a gene from Bacillus subtilis Genome Sequence Project." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1794 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1796 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB" ; + ns2:hasDefinition "Identifier of a gene from PlasmoDB Plasmodium Genome Resource." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1796 a owl:Class ; rdfs:label "Gene ID (FlyBase)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: FB", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1797 a owl:Class ; + ns2:hasDefinition "Gene identifier from FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1797 a owl:Class ; rdfs:label "Gene ID (GeneDB Glossina morsitans)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1035 ; - oboInOwl:hasDefinition "Gene identifier from Glossina morsitans GeneDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDefinition "Gene identifier from Glossina morsitans GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1798 a owl:Class ; +ns1:data_1798 a owl:Class ; rdfs:label "Gene ID (GeneDB Leishmania major)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1035 ; - oboInOwl:hasDefinition "Gene identifier from Leishmania major GeneDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDefinition "Gene identifier from Leishmania major GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1799 a owl:Class ; +ns1:data_1799 a owl:Class ; rdfs:label "Gene ID (GeneDB Plasmodium falciparum)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum" ; + ns2:hasDefinition "Gene identifier from Plasmodium falciparum GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1800 a owl:Class ; +ns1:data_1800 a owl:Class ; rdfs:label "Gene ID (GeneDB Schizosaccharomyces pombe)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe" ; + ns2:hasDefinition "Gene identifier from Schizosaccharomyces pombe GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1801 a owl:Class ; +ns1:data_1801 a owl:Class ; rdfs:label "Gene ID (GeneDB Trypanosoma brucei)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1035 ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei" ; + ns2:hasDefinition "Gene identifier from Trypanosoma brucei GeneDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1802 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1803 a owl:Class ; + ns2:hasDefinition "Gene identifier from Gramene database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1804 a owl:Class ; + ns2:hasDefinition "Gene identifier from Virginia Bioinformatics Institute microbial database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1805 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SGN" ; + ns2:hasDefinition "Gene identifier from Sol Genomics Network." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "WBGene[0-9]{8}" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2113, - :data_2295 . - -:data_1806 a owl:Class ; + ns2:hasDefinition "Gene identifier used by WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2113, + ns1:data_2295 . + +ns1:data_1806 a owl:Class ; rdfs:label "Gene synonym" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Any name (other than the recommended one) for a gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Any name (other than the recommended one) for a gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1807 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2795 . - -:data_1852 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of an open reading frame attributed by a sequencing project." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2795 . + +ns1:data_1852 a owl:Class ; rdfs:label "Sequence assembly component" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0925 ; - oboInOwl:hasDefinition "A component of a larger sequence assembly." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0925 ; + ns2:hasDefinition "A component of a larger sequence assembly." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1853 a owl:Class ; +ns1:data_1853 a owl:Class ; rdfs:label "Chromosome annotation (aberration)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0919 ; - oboInOwl:hasDefinition "A report on a chromosome aberration such as abnormalities in chromosome structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0919 ; + ns2:hasDefinition "A report on a chromosome aberration such as abnormalities in chromosome structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1856 a owl:Class ; +ns1:data_1856 a owl:Class ; rdfs:label "PDB insertion code" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:pdbx_PDB_ins_code", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1016 . + ns2:hasDefinition "An insertion code (part of the residue number) for an amino acid residue from a PDB file." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1016 . -:data_1857 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PDBx_occupancy" ; + ns2:hasDefinition "The fraction of an atom type present at a site in a molecular structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1917 . -:data_1858 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1917 . - -:data_1859 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PDBx_B_iso_or_equiv" ; + ns2:hasDefinition "Isotropic B factor (atomic displacement parameter) for an atom from a PDB file." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1917 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type." ; + ns2:hasExactSynonym "Deletion-based cytogenetic map" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1283 . -:data_1860 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1278 . - -:data_1864 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers." ; + ns2:hasExactSynonym "Quantitative trait locus map" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1278 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_2019 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_2019 ; + ns2:hasDefinition "Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2019 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1865 a owl:Class ; +ns1:data_1865 a owl:Class ; rdfs:label "Map feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1255, + ns1:data_1276, + ns1:data_2019 ; + ns2:hasDefinition "A feature which may mapped (positioned) on a genetic or other type of map." ; + ns2:inSubset ns4: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 ; +ns1:data_1866 a owl:Class ; rdfs:label "Map type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A designation of the type of map (genetic map, physical map, sequence map etc) or map set." ; + ns2:inSubset ns4: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 ; +ns1:data_1867 a owl:Class ; rdfs:label "Protein fold name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a protein fold." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_1872 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a protein fold." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1:data_1872 a owl:Class ; rdfs:label "Taxonomic classification" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GCP_Taxon", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature." ; + ns2:hasExactSynonym "Taxonomic information", "Taxonomic name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2909 . -:data_1873 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2908 . - -:data_1874 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:iHOPorganism" ; + ns2:hasDefinition "A unique identifier for an organism used in the iHOP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2908 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2909 . - -:data_1875 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Common name for an organism as used in the GenBank database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2909 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1877 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a taxon from the NCBI taxonomy database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1:data_1877 a owl:Class ; rdfs:label "Synonym" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "An alternative for a word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "An alternative for a word." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1878 a owl:Class ; +ns1:data_1878 a owl:Class ; rdfs:label "Misspelling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "A common misspelling of a word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "A common misspelling of a word." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1879 a owl:Class ; +ns1:data_1879 a owl:Class ; rdfs:label "Acronym" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "An abbreviation of a phrase or word." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "An abbreviation of a phrase or word." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1880 a owl:Class ; +ns1:data_1880 a owl:Class ; rdfs:label "Misnomer" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0968 ; - oboInOwl:hasDefinition "A term which is likely to be misleading of its meaning." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0968 ; + ns2:hasDefinition "A term which is likely to be misleading of its meaning." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1882 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1881 . - -:data_1884 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier representing an author in the DragonDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1881 . + +ns1:data_1884 a owl:Class ; rdfs:label "UniProt keywords" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0582 ; + ns2:hasDefinition "A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1885 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1886 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:GENEFARM_GeneID" ; + ns2:hasDefinition "Identifier of a gene from the GeneFarm database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1887 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:Blattner_number" ; + ns2:hasDefinition "The blattner identifier for a gene." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_1887 a owl:Class ; rdfs:label "Gene ID (MIPS Maize)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2285 ; - oboInOwl:hasDbXref "Moby_namespace:MIPS_GE_Maize" ; - oboInOwl:hasDefinition "Identifier for genetic elements in MIPS Maize database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2285 ; + ns2:hasDbXref "Moby_namespace:MIPS_GE_Maize" ; + ns2:hasDefinition "Identifier for genetic elements in MIPS Maize database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1888 a owl:Class ; +ns1:data_1888 a owl:Class ; rdfs:label "Gene ID (MIPS Medicago)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2285 ; - oboInOwl:hasDbXref "Moby_namespace:MIPS_GE_Medicago" ; - oboInOwl:hasDefinition "Identifier for genetic elements in MIPS Medicago database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2285 ; + ns2:hasDbXref "Moby_namespace:MIPS_GE_Medicago" ; + ns2:hasDefinition "Identifier for genetic elements in MIPS Medicago database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1889 a owl:Class ; +ns1:data_1889 a owl:Class ; rdfs:label "Gene name (DragonDB)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "Moby_namespace:DragonDB_Gene" ; - oboInOwl:hasDefinition "The name of an Antirrhinum Gene from the DragonDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "Moby_namespace:DragonDB_Gene" ; + ns2:hasDefinition "The name of an Antirrhinum Gene from the DragonDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1890 a owl:Class ; +ns1:data_1890 a owl:Class ; rdfs:label "Gene name (Arabidopsis)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1891 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109, - :data_2295, - :data_2907 . - -:data_1892 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:iHOPsymbol" ; + ns2:hasDefinition "A unique identifier of a protein or gene used in the iHOP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2295, + ns1:data_2907 . + +ns1:data_1892 a owl:Class ; rdfs:label "Gene name (GeneFarm)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of a gene from the GeneFarm database." ; - oboInOwl:hasExactSynonym "GeneFarm gene ID" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of a gene from the GeneFarm database." ; + ns2:hasExactSynonym "GeneFarm gene ID" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_1895 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "AT[1-5]G[0-9]{5}" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode" ; + ns2:hasDefinition "Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases)" ; + ns2:hasExactSynonym "AGI ID", "AGI identifier", "AGI locus code", "Arabidopsis gene loci number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . -:data_1896 a owl:Class ; +ns1:data_1896 a owl:Class ; rdfs:label "Locus ID (ASPGD)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1897 a owl:Class ; + ns2:hasDefinition "Identifier for loci from ASPGD (Aspergillus Genome Database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1898 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG" ; + ns2:hasDefinition "Identifier for loci from Magnaporthe grisea Database at the Broad Institute." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1898 a owl:Class ; rdfs:label "Locus ID (CGD)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGD", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Identifier for loci from CGD (Candida Genome Database)." ; + ns2:hasExactSynonym "CGD locus identifier", "CGDID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . -:data_1899 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1900 a owl:Class ; + ns2:hasDefinition "Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1900 a owl:Class ; rdfs:label "NCBI locus tag" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:LocusID", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1901 a owl:Class ; + ns2:hasDefinition "Identifier for loci from NCBI database." ; + ns2:hasExactSynonym "Locus ID (NCBI)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1901 a owl:Class ; rdfs:label "Locus ID (SGD)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SGD", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091, - :data_2632 . - -:data_1902 a owl:Class ; + ns2:hasDefinition "Identifier for loci from SGD (Saccharomyces Genome Database)." ; + ns2:hasExactSynonym "SGDID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091, + ns1:data_2632 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1903 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:MMP_Locus" ; + ns2:hasDefinition "Identifier of loci from Maize Mapping Project." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1904 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:DDB_gene" ; + ns2:hasDefinition "Identifier of locus from DictyBase (Dictyostelium discoideum)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1904 a owl:Class ; rdfs:label "Locus ID (EntrezGene)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:EntrezGene_EntrezGeneID", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:EntrezGene_EntrezGeneID", "Moby_namespace:EntrezGene_ID" ; - oboInOwl:hasDefinition "Identifier of a locus from EntrezGene database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1905 a owl:Class ; + ns2:hasDefinition "Identifier of a locus from EntrezGene database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_1906 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:MaizeGDB_Locus" ; + ns2:hasDefinition "Identifier of locus from MaizeGDB (Maize genome database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_1906 a owl:Class ; rdfs:label "Quantitative trait locus" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2012 ; + ns2:hasDbXref "Moby:SO_QTL" ; + ns2: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)." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1908 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby_namespace:GeneId" ; + ns2:hasDefinition "Identifier of a gene from the KOME database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_2007 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Tropgene_locus" ; + ns2:hasDefinition "Identifier of a locus from the Tropgene database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1:data_2007 a owl:Class ; rdfs:label "UniProt keyword" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:SP_KW", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0968 . + ns2:hasDefinition "A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0968 . -:data_2009 a owl:Class ; +ns1:data_2009 a owl:Class ; rdfs:label "Ordered locus name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1893 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2018 a owl:Class ; +ns1:data_2018 a owl:Class ; rdfs:label "Annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2048 ; + ns2: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." ; + ns2:inSubset ns4: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 ; +ns1:data_2022 a owl:Class ; rdfs:label "Vienna RNA structural data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1465 ; - oboInOwl:hasDefinition "Data used by the Vienna RNA analysis package." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1465 ; + ns2:hasDefinition "Data used by the Vienna RNA analysis package." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2023 a owl:Class ; +ns1:data_2023 a owl:Class ; rdfs:label "Sequence mask parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Data used to replace (mask) characters in a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Data used to replace (mask) characters in a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2025 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_2026 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2024 . + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2024 . -:data_2028 a owl:Class ; +ns1:data_2028 a owl:Class ; rdfs:label "Experimental data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2531, - :data_3108 ; - oboInOwl:hasDefinition "Raw data from or annotation on laboratory experiments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2531, + ns1:data_3108 ; + ns2:hasDefinition "Raw data from or annotation on laboratory experiments." ; + ns2:inSubset ns4: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 ; +ns1:data_2041 a owl:Class ; rdfs:label "Genome version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2711 ; - oboInOwl:hasDefinition "Information on a genome version." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2711 ; + ns2:hasDefinition "Information on a genome version." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2042 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_2043 a owl:Class ; +ns1:data_2043 a owl:Class ; rdfs:label "Sequence record lite" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2046 a owl:Class ; +ns1:data_2046 a owl:Class ; rdfs:label "Nucleic acid sequence record (lite)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2047 a owl:Class ; +ns1:data_2047 a owl:Class ; rdfs:label "Protein sequence record (lite)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; - oboInOwl:hasExactSynonym "Sequence record lite (protein)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + ns2:hasExactSynonym "Sequence record lite (protein)" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2053 a owl:Class ; +ns1:data_2053 a owl:Class ; rdfs:label "Structural data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0883, - :data_2085 ; - oboInOwl:hasDefinition "Data concerning molecular structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0883, + ns1:data_2085 ; + ns2:hasDefinition "Data concerning molecular structural data." ; + ns2:inSubset ns4: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A nucleotide sequence motif." ; + ns2:hasExactSynonym "Nucleic acid sequence motif" ; + ns2:hasNarrowSynonym "DNA sequence motif", "RNA sequence motif" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1353 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1353 . -:data_2079 a owl:Class ; +ns1:data_2079 a owl:Class ; rdfs:label "Search parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Some simple value controlling a search operation, typically a search of a database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Some simple value controlling a search operation, typically a search of a database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2081 a owl:Class ; +ns1:data_2081 a owl:Class ; rdfs:label "Secondary structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0883 ; - oboInOwl:hasDefinition "The secondary structure assignment (predicted or real) of a nucleic acid or protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0883 ; + ns2:hasDefinition "The secondary structure assignment (predicted or real) of a nucleic acid or protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2086 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:operation_0912 ; + ns2:consider ns1:data_0912, + ns1:data_3128 ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2090 a owl:Class ; +ns1:data_2090 a owl:Class ; rdfs:label "Database entry version information" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0957 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2092 a owl:Class ; +ns1:data_2092 a owl:Class ; rdfs:label "SNP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "single nucleotide polymorphism (SNP) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "single nucleotide polymorphism (SNP) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2098 a owl:Class ; +ns1:data_2098 a owl:Class ; rdfs:label "Job identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a submitted job." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a submitted job." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:seeAlso "http://wsio.org/data_009" ; - rdfs:subClassOf :data_0976 . + rdfs:subClassOf ns1:data_0976 . -:data_2100 a owl:Class ; +ns1:data_2100 a owl:Class ; rdfs:label "Type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2: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)." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.org/dc/elements/1.1/type" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2102 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2909 . - -:data_2103 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A three-letter code used in the KEGG databases to uniquely identify organisms." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2909 . + +ns1:data_2103 a owl:Class ; rdfs:label "Gene name (KEGG GENES)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - :regex "[a-zA-Z_0-9]+:[a-zA-Z_0-9\\.-]*" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDbXref "Moby_namespace:GeneId" ; - oboInOwl:hasDefinition "Name of an entry (gene) from the KEGG GENES database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns1:regex "[a-zA-Z_0-9]+:[a-zA-Z_0-9\\.-]*" ; + ns2:consider ns1:data_1026 ; + ns2:hasDbXref "Moby_namespace:GeneId" ; + ns2:hasDefinition "Name of an entry (gene) from the KEGG GENES database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2105 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a compound from the BioCyc chemical compounds database." ; + ns2:hasExactSynonym "BioCyc compound ID", "BioCyc compound identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2894 . - -:data_2106 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2108 . - -:data_2107 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a biological reaction from the BioCyc reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2104, - :data_2321 . - -:data_2112 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an enzyme from the BioCyc enzymes database." ; + ns2:hasExactSynonym "BioCyc enzyme ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2104, + ns1:data_2321 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1089 . - -:data_2114 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Primary identifier of an object from the FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1089 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2113, - :data_2907 . - -:data_2116 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "CE[0-9]{5}" ; + ns2:hasDefinition "Protein identifier used by WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2113, + ns1:data_2907 . + +ns1:data_2116 a owl:Class ; rdfs:label "Nucleic acid features (codon)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2126 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:data_2534 ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2128 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2127 . - -:data_2130 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Informal name for a genetic code, typically an organism name." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2127 . + +ns1:data_2130 a owl:Class ; rdfs:label "Sequence profile type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2131 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_2132 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a computer operating system such as Linux, PC or Mac." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1:data_2132 a owl:Class ; rdfs:label "Mutation type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2538 ; - oboInOwl:hasDefinition "A type of point or block mutation, including insertion, deletion, change, duplication and moves." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2538 ; + ns2:hasDefinition "A type of point or block mutation, including insertion, deletion, change, duplication and moves." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2133 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_2134 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A logical operator such as OR, AND, XOR, and NOT." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1:data_2134 a owl:Class ; rdfs:label "Results sort order" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A control of the order of data that is output, for example the order of sequences in an alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_2135 a owl:Class ; rdfs:label "Toggle" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "A simple parameter that is a toggle (boolean value), typically a control for a modal tool." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A simple parameter that is a toggle (boolean value), typically a control for a modal tool." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2136 a owl:Class ; +ns1:data_2136 a owl:Class ; rdfs:label "Sequence width" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "The width of an output sequence or alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "The width of an output sequence or alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2140 a owl:Class ; +ns1:data_2140 a owl:Class ; rdfs:label "Concentration" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The concentration of a chemical compound." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The concentration of a chemical compound." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . -:data_2141 a owl:Class ; +ns1:data_2141 a owl:Class ; rdfs:label "Window step size" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1249 ; - oboInOwl:hasDefinition "Size of the incremental 'step' a sequence window is moved over a sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1249 ; + ns2:hasDefinition "Size of the incremental 'step' a sequence window is moved over a sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2142 a owl:Class ; +ns1:data_2142 a owl:Class ; rdfs:label "EMBOSS graph" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2968 ; - oboInOwl:hasDefinition "An image of a graph generated by the EMBOSS suite." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2968 ; + ns2:hasDefinition "An image of a graph generated by the EMBOSS suite." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2143 a owl:Class ; +ns1:data_2143 a owl:Class ; rdfs:label "EMBOSS report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "An application report generated by the EMBOSS suite." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "An application report generated by the EMBOSS suite." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2145 a owl:Class ; +ns1:data_2145 a owl:Class ; rdfs:label "Sequence offset" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "An offset for a single-point sequence position." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "An offset for a single-point sequence position." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2146 a owl:Class ; +ns1:data_2146 a owl:Class ; rdfs:label "Threshold" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1772 ; - oboInOwl:hasDefinition "A value that serves as a threshold for a tool (usually to control scoring or output)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1772 ; + ns2:hasDefinition "A value that serves as a threshold for a tool (usually to control scoring or output)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2147 a owl:Class ; +ns1:data_2147 a owl:Class ; rdfs:label "Protein report (transcription factor)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "An informative report on a transcription factor protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "An informative report on a transcription factor protein." ; + ns2:inSubset ns4: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 ; +ns1:data_2149 a owl:Class ; rdfs:label "Database category name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a category of biological or bioinformatics database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a category of biological or bioinformatics database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2150 a owl:Class ; +ns1:data_2150 a owl:Class ; rdfs:label "Sequence profile name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1115 ; - oboInOwl:hasDefinition "Name of a sequence profile." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1115 ; + ns2:hasDefinition "Name of a sequence profile." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2151 a owl:Class ; +ns1:data_2151 a owl:Class ; rdfs:label "Color" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Specification of one or more colors." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Specification of one or more colors." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2152 a owl:Class ; +ns1:data_2152 a owl:Class ; rdfs:label "Rendering parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "A parameter that is used to control rendering (drawing) to a device or image." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A parameter that is used to control rendering (drawing) to a device or image." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2156 a owl:Class ; +ns1:data_2156 a owl:Class ; rdfs:label "Date" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "A temporal date." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "A temporal date." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2157 a owl:Class ; +ns1:data_2157 a owl:Class ; rdfs:label "Word composition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1266, - :data_1268 ; - oboInOwl:hasDefinition "Word composition data for a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1266, + ns1:data_1268 ; + ns2:hasDefinition "Word composition data for a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2160 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2884 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2884 . -:data_2163 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Useful for highlighting amphipathicity and other properties." ; - rdfs:subClassOf :data_1709 . + rdfs:subClassOf ns1:data_1709 . -:data_2164 a owl:Class ; +ns1:data_2164 a owl:Class ; rdfs:label "Protein sequence properties plot" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0897 ; - oboInOwl:hasDefinition "A plot of general physicochemical properties of a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0897 ; + ns2:hasDefinition "A plot of general physicochemical properties of a protein sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2165 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897, - :data_2884 . - -:data_2166 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of pK versus pH for a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897, + ns1:data_2884 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2884 . - -:data_2167 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of character or word composition / frequency of a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2884 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2884 . - -:data_2168 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Density plot (of base composition) for a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2884 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2969 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2969 . -:data_2169 a owl:Class ; +ns1:data_2169 a owl:Class ; rdfs:label "Nucleic acid features (siRNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1276 ; - oboInOwl:hasDefinition "A report on siRNA duplexes in mRNA." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "A report on siRNA duplexes in mRNA." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2173 a owl:Class ; +ns1:data_2173 a owl:Class ; rdfs:label "Sequence set (stream)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Secondary identifier of an object from the FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1089 . -:data_2176 a owl:Class ; +ns1:data_2176 a owl:Class ; rdfs:label "Cardinality" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "The number of a certain thing." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "The number of a certain thing." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2177 a owl:Class ; +ns1:data_2177 a owl:Class ; rdfs:label "Exactly 1" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "A single thing." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "A single thing." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2178 a owl:Class ; +ns1:data_2178 a owl:Class ; rdfs:label "1 or more" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "One or more things." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "One or more things." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2179 a owl:Class ; +ns1:data_2179 a owl:Class ; rdfs:label "Exactly 2" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Exactly two things." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Exactly two things." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2180 a owl:Class ; +ns1:data_2180 a owl:Class ; rdfs:label "2 or more" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2337 ; - oboInOwl:hasDefinition "Two or more things." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2337 ; + ns2:hasDefinition "Two or more things." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2191 a owl:Class ; +ns1:data_2191 a owl:Class ; rdfs:label "Protein features report (chemical modifications)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "chemical modification of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "chemical modification of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2192 a owl:Class ; +ns1:data_2192 a owl:Class ; rdfs:label "Error" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Data on an error generated by computer system or tool." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Data on an error generated by computer system or tool." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2193 a owl:Class ; +ns1:data_2193 a owl:Class ; rdfs:label "Database entry metadata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Basic information on any arbitrary database entry." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information on any arbitrary database entry." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_2198 a owl:Class ; +ns1:data_2198 a owl:Class ; rdfs:label "Gene cluster" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1246 ; - oboInOwl:hasDefinition "A cluster of similar genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1246 ; + ns2:hasDefinition "A cluster of similar genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2201 a owl:Class ; +ns1:data_2201 a owl:Class ; rdfs:label "Sequence record full" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2208 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2119 . - -:data_2209 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a plasmid in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2119 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2538 . - -:data_2212 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique identifier of a specific mutation catalogued in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2538 . + +ns1:data_2212 a owl:Class ; rdfs:label "Mutation annotation (basic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2213 a owl:Class ; +ns1:data_2213 a owl:Class ; rdfs:label "Mutation annotation (prevalence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2214 a owl:Class ; +ns1:data_2214 a owl:Class ; rdfs:label "Mutation annotation (prognostic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2215 a owl:Class ; +ns1:data_2215 a owl:Class ; rdfs:label "Mutation annotation (functional)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2216 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1016 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The number of a codon, for instance, at which a mutation is located." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1016 . -:data_2217 a owl:Class ; +ns1:data_2217 a owl:Class ; rdfs:label "Tumor annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_1622 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2218 a owl:Class ; +ns1:data_2218 a owl:Class ; rdfs:label "Server metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3106 ; - oboInOwl:hasDefinition "Basic information about a server on the web, such as an SRS server." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3106 ; + ns2:hasDefinition "Basic information about a server on the web, such as an SRS server." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2219 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_2220 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a field in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . - -:data_2223 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a sequence cluster from the SYSTERS database." ; + ns2:hasExactSynonym "SYSTERS cluster ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . + +ns1:data_2223 a owl:Class ; rdfs:label "Ontology metadata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concerning a biological ontology." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning a biological ontology." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0089 ], - :data_2337 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:data_2337 . -:data_2235 a owl:Class ; +ns1:data_2235 a owl:Class ; rdfs:label "Raw SCOP domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Raw SCOP domain classification data files." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Raw SCOP domain classification data files." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "These are the parsable data files provided by SCOP." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2236 a owl:Class ; +ns1:data_2236 a owl:Class ; rdfs:label "Raw CATH domain classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Raw CATH domain classification data files." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Raw CATH domain classification data files." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "These are the parsable data files provided by CATH." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2240 a owl:Class ; +ns1:data_2240 a owl:Class ; rdfs:label "Heterogen annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2242 a owl:Class ; +ns1:data_2242 a owl:Class ; rdfs:label "Phylogenetic property values" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0871 ; - oboInOwl:hasDefinition "Phylogenetic property values data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0871 ; + ns2:hasDefinition "Phylogenetic property values data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2245 a owl:Class ; +ns1:data_2245 a owl:Class ; rdfs:label "Sequence set (bootstrapped)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0850 ; - oboInOwl:hasDefinition "A collection of sequences output from a bootstrapping (resampling) procedure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0850 ; + ns2:hasDefinition "A collection of sequences output from a bootstrapping (resampling) procedure." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Bootstrapping is often performed in phylogenetic analysis." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2247 a owl:Class ; +ns1:data_2247 a owl:Class ; rdfs:label "Phylogenetic consensus tree" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0872 ; - oboInOwl:hasDefinition "A consensus phylogenetic tree derived from comparison of multiple trees." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0872 ; + ns2:hasDefinition "A consensus phylogenetic tree derived from comparison of multiple trees." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2248 a owl:Class ; +ns1:data_2248 a owl:Class ; rdfs:label "Schema" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A data schema for organising or transforming data of some type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A data schema for organising or transforming data of some type." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2249 a owl:Class ; +ns1:data_2249 a owl:Class ; rdfs:label "DTD" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A DTD (document type definition)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A DTD (document type definition)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2250 a owl:Class ; +ns1:data_2250 a owl:Class ; rdfs:label "XML Schema" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "An XML Schema." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "An XML Schema." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2251 a owl:Class ; +ns1:data_2251 a owl:Class ; rdfs:label "Relax-NG schema" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A relax-NG schema." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A relax-NG schema." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2252 a owl:Class ; +ns1:data_2252 a owl:Class ; rdfs:label "XSLT stylesheet" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "An XSLT stylesheet." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "An XSLT stylesheet." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2254 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2129 . - -:data_2288 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an OBO file format such as OBO-XML, plain and so on." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2129 . + +ns1:data_2288 a owl:Class ; rdfs:label "Sequence identifier (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1096 ; - oboInOwl:hasDefinition "An identifier of protein sequence(s) or protein sequence database entries." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1096 ; + ns2:hasDefinition "An identifier of protein sequence(s) or protein sequence database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2289 a owl:Class ; +ns1:data_2289 a owl:Class ; rdfs:label "Sequence identifier (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1097 ; - oboInOwl:hasDefinition "An identifier of nucleotide sequence(s) or nucleotide sequence database entries." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1097 ; + ns2:hasDefinition "An identifier of nucleotide sequence(s) or nucleotide sequence database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2290 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An accession number of an entry from the EMBL sequence database." ; + ns2:hasExactSynonym "EMBL ID", "EMBL accession number", "EMBL identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1103 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1103 . -:data_2291 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a polypeptide in the UniProt database." ; + ns2:hasExactSynonym "UniProt entry name", "UniProt identifier", "UniProtKB entry name", "UniProtKB identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0849 ], - :data_2154 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0849 ], + ns1:data_2154 . -:data_2293 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Secondary (internal) identifier of a Gramene database entry." ; + ns2:hasExactSynonym "Gramene internal ID", "Gramene internal identifier", "Gramene secondary ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2915 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2915 . -:data_2296 a owl:Class ; +ns1:data_2296 a owl:Class ; rdfs:label "Gene name (AceView)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the AceView genes database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the AceView genes database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2297 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ECK" ; + ns2:hasDefinition "Identifier of an E. coli K-12 gene from EcoGene Database." ; + ns2:hasExactSynonym "E. coli K-12 gene identifier", "ECK accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1795 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1795 . -:data_2298 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2300 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for a gene approved by the HUGO Gene Nomenclature Committee." ; + ns2:hasExactSynonym "HGNC ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2300 a owl:Class ; rdfs:label "Gene name (NCBI)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the NCBI genes database." ; - oboInOwl:hasExactSynonym "NCBI gene name" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the NCBI genes database." ; + ns2:hasExactSynonym "NCBI gene name" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2302 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2307 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the STRING database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1:data_2307 a owl:Class ; rdfs:label "Virus annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on a specific virus." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on a specific virus." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2308 a owl:Class ; +ns1:data_2308 a owl:Class ; rdfs:label "Virus annotation (taxonomy)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on the taxonomy of a specific virus." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on the taxonomy of a specific virus." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2315 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "NCBI accession.version", "accession.version" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2362 . -:data_2317 a owl:Class ; +ns1:data_2317 a owl:Class ; rdfs:label "Cell line name (exact)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2318 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1:data_2318 a owl:Class ; rdfs:label "Cell line name (truncated)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2319 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1:data_2319 a owl:Class ; rdfs:label "Cell line name (no punctuation)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2320 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1:data_2320 a owl:Class ; rdfs:label "Cell line name (assonant)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2316 . - -:data_2325 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2316 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . - -:data_2326 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an enzyme from the REBASE enzymes database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2895 . - -:data_2327 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "DB[0-9]{5}" ; + ns2:hasDefinition "Unique identifier of a drug from the DrugBank database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2895 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier assigned to NCBI protein sequence records." ; + ns2:hasExactSynonym "protein gi", "protein gi number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2314 . -:data_2335 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1413 . -:data_2336 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:data_2534 ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2340 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2749 . - -:data_2342 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a build of a particular genome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2749 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1082 . - -:data_2343 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a biological pathway or network." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1082 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2091, - :data_2365 . - -:data_2344 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]{2,3}[0-9]{5}" ; + ns2:hasDefinition "Identifier of a pathway from the KEGG pathway database." ; + ns2:hasExactSynonym "KEGG pathway ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2345 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the NCI-Nature pathway database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365, - :data_2917 . - -:data_2347 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a pathway from the ConsensusPathDB pathway database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365, + ns1:data_2917 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef100 database." ; + ns2:hasExactSynonym "UniRef100 cluster id", "UniRef100 entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2346 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2346 . -:data_2348 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef90 database." ; + ns2:hasExactSynonym "UniRef90 cluster id", "UniRef90 entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2346 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2346 . -:data_2349 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef50 database." ; + ns2:hasExactSynonym "UniRef50 cluster id", "UniRef50 entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2346 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2346 . -:data_2356 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2355 . - -:data_2357 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Stable accession number of an entry (RNA family) from the RFAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2355 . + +ns1:data_2357 a owl:Class ; rdfs:label "Protein signature type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2358 a owl:Class ; +ns1:data_2358 a owl:Class ; rdfs:label "Domain-nucleic acid interaction report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0906 ; - oboInOwl:hasDefinition "An informative report on protein domain-DNA/RNA interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "An informative report on protein domain-DNA/RNA interaction(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2359 a owl:Class ; +ns1:data_2359 a owl:Class ; rdfs:label "Domain-domain interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_0906 ; - oboInOwl:hasDefinition "An informative report on protein domain-protein domain interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "An informative report on protein domain-protein domain interaction(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2360 a owl:Class ; +ns1:data_2360 a owl:Class ; rdfs:label "Domain-domain interaction (indirect)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0906 ; - oboInOwl:hasDefinition "Data on indirect protein domain-protein domain interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "Data on indirect protein domain-protein domain interaction(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2363 a owl:Class ; +ns1:data_2363 a owl:Class ; rdfs:label "2D PAGE data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "Data concerning two-dimensional polygel electrophoresis." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "Data concerning two-dimensional polygel electrophoresis." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_2364 a owl:Class ; rdfs:label "2D PAGE report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2368 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2369 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an exon from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2370 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an intron from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2371 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a polyA signal from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2367 . - -:data_2372 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a transcription start site from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2367 . + +ns1:data_2372 a owl:Class ; rdfs:label "2D PAGE spot report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2374 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2373 . - -:data_2375 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2373 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2373 . - -:data_2378 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2373 . + +ns1:data_2378 a owl:Class ; rdfs:label "Protein-motif interaction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2380 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2381 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of an item from the CABRI database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2381 a owl:Class ; rdfs:label "Experiment report (genotyping)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2383 a owl:Class ; +ns1:data_2383 a owl:Class ; rdfs:label "EGA accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the EGA database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2382 . - -:data_2384 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the EGA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2382 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . - -:data_2385 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "IPI[0-9]{8}" ; + ns2:hasDefinition "Identifier of a protein entry catalogued in the International Protein Index (IPI) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1098 . - -:data_2386 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of a protein from the RefSeq database." ; + ns2:hasExactSynonym "RefSeq protein ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1098 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2727 . - -:data_2388 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry (promoter) from the EPD database." ; + ns2:hasExactSynonym "EPD identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2727 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1037 . - -:data_2389 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an Arabidopsis thaliana gene from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1037 . + +ns1:data_2389 a owl:Class ; rdfs:label "UniSTS accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the UniSTS database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2390 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UniSTS database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1:data_2390 a owl:Class ; rdfs:label "UNITE accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the UNITE database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2391 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UNITE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1:data_2391 a owl:Class ; rdfs:label "UTR accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the UTR database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2392 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UTR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "UPI[A-F0-9]{10}" ; + ns2:hasDefinition "Accession number of a UniParc (protein sequence) database entry." ; + ns2:hasExactSynonym "UPI", "UniParc ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . -:data_2393 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2395 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the Rouge or HUGE databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2395 a owl:Class ; rdfs:label "Fungi annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on a specific fungus." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on a specific fungus." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2396 a owl:Class ; +ns1:data_2396 a owl:Class ; rdfs:label "Fungi annotation (anamorph)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2530 ; - oboInOwl:hasDefinition "An informative report on a specific fungus anamorph." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2530 ; + ns2:hasDefinition "An informative report on a specific fungus anamorph." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2398 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the Ensembl database." ; + ns2:hasExactSynonym "Ensembl ID (protein)", "Protein ID (Ensembl)" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2610, - :data_2907 . - -:data_2400 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2610, + ns1:data_2907 . + +ns1:data_2400 a owl:Class ; rdfs:label "Toxin annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report on a specific toxin." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report on a specific toxin." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2401 a owl:Class ; +ns1:data_2401 a owl:Class ; rdfs:label "Protein report (membrane protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1277 ; - oboInOwl:hasDefinition "An informative report on a membrane protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1277 ; + ns2:hasDefinition "An informative report on a membrane protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2402 a owl:Class ; +ns1:data_2402 a owl:Class ; rdfs:label "Protein-drug interaction report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "An informative report on tentative or known protein-drug interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1566 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "An informative report on tentative or known protein-drug interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1566 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2522 a owl:Class ; +ns1:data_2522 a owl:Class ; rdfs:label "Map data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1274, - :data_2019 ; - oboInOwl:hasDefinition "Data concerning a map of molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1274, + ns1:data_2019 ; + ns2:hasDefinition "Data concerning a map of molecular sequence(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_2524 a owl:Class ; rdfs:label "Protein data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0896 ; - oboInOwl:hasDefinition "Data concerning one or more protein molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0896 ; + ns2:hasDefinition "Data concerning one or more protein molecules." ; + ns2:inSubset ns4: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 ; +ns1:data_2525 a owl:Class ; rdfs:label "Nucleic acid data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2084 ; - oboInOwl:hasDefinition "Data concerning one or more nucleic acid molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2084 ; + ns2:hasDefinition "Data concerning one or more nucleic acid molecules." ; + ns2:inSubset ns4: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 ; +ns1:data_2527 a owl:Class ; rdfs:label "Parameter" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Typically a simple numerical or string value that controls the operation of a tool." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Typically a simple numerical or string value that controls the operation of a tool." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2528 a owl:Class ; +ns1:data_2528 a owl:Class ; rdfs:label "Molecular data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2087 ; - oboInOwl:hasDefinition "Data concerning a specific type of molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2087 ; + ns2:hasDefinition "Data concerning a specific type of molecule." ; + ns2:inSubset ns4: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 ; +ns1:data_2529 a owl:Class ; rdfs:label "Molecule report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0896, - :data_2084 ; - oboInOwl:hasDefinition "An informative report on a specific molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0896, + ns1:data_2084 ; + ns2:hasDefinition "An informative report on a specific molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2539 a owl:Class ; +ns1:data_2539 a owl:Class ; rdfs:label "Alignment data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1916, - :data_2083 ; - oboInOwl:hasDefinition "Data concerning an alignment of two or more molecular sequences, structures or derived data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1916, + ns1:data_2083 ; + ns2:hasDefinition "Data concerning an alignment of two or more molecular sequences, structures or derived data." ; + ns2:inSubset ns4: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 ; +ns1:data_2540 a owl:Class ; rdfs:label "Data index data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0955 ; - oboInOwl:hasDefinition "Data concerning an index of data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0955 ; + ns2:hasDefinition "Data concerning an index of data." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1006 . - -:data_2565 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Single letter amino acid identifier, e.g. G." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1006 . - -:data_2578 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Full name of an amino acid, e.g. Glycine." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2897 . - -:data_2579 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a toxin from the ArachnoServer database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2897 . + +ns1:data_2579 a owl:Class ; rdfs:label "Expressed gene list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2872 ; - oboInOwl:hasDefinition "A simple summary of expressed genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2872 ; + ns2:hasDefinition "A simple summary of expressed genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2580 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2581 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a monomer from the BindingDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1:data_2581 a owl:Class ; rdfs:label "GO concept name" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2582 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1176 . - -:data_2583 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a 'biological process' concept from the the Gene Ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1176 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1176 . - -:data_2584 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a 'molecular function' concept from the the Gene Ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1176 . + +ns1:data_2584 a owl:Class ; rdfs:label "GO concept name (cellular component)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept for a cellular component from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept for a cellular component from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2586 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3424 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image arising from a Northern Blot experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3424 . -:data_2588 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2587 . - -:data_2589 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a blot from a Northern Blot from the BlotBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2587 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2590 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation." ; + ns2:hasExactSynonym "Hierarchy annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1:data_2590 a owl:Class ; rdfs:label "Hierarchy identifier" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2891 ; - oboInOwl:hasDefinition "Identifier of an entry from a database of biological hierarchies." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2891 ; + ns2:hasDefinition "Identifier of an entry from a database of biological hierarchies." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2591 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2891 . - -:data_2592 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the Brite database of biological hierarchies." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2891 . + +ns1:data_2592 a owl:Class ; rdfs:label "Cancer type" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2099 ; - oboInOwl:hasDefinition "A type (represented as a string) of cancer." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2099 ; + ns2:hasDefinition "A type (represented as a string) of cancer." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2593 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2908 . - -:data_2594 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier for an organism used in the BRENDA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2908 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_2595 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a taxon using the controlled vocabulary of the UniGene database." ; + ns2:hasExactSynonym "UniGene organism abbreviation" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_2597 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a taxon using the controlled vocabulary of the UTRdb database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2596 . - -:data_2598 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a catalogue of biological resources from the CABRI database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2596 . + +ns1:data_2598 a owl:Class ; rdfs:label "Secondary structure alignment metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0867 ; - oboInOwl:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0867 ; + ns2:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2599 a owl:Class ; +ns1: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" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0906 ; + ns2:hasDefinition "An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2601 a owl:Class ; +ns1:data_2601 a owl:Class ; rdfs:label "Small molecule data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "Data concerning one or more small molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "Data concerning one or more small molecules." ; + ns2:inSubset ns4: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 ; +ns1:data_2602 a owl:Class ; rdfs:label "Genotype and phenotype data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0920 ; - oboInOwl:hasDefinition "Data concerning a particular genotype, phenotype or a genotype / phenotype relation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0920 ; + ns2:hasDefinition "Data concerning a particular genotype, phenotype or a genotype / phenotype relation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2605 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "C[0-9]+" ; + ns2:hasDefinition "Unique identifier of a chemical compound from the KEGG database." ; + ns2:hasExactSynonym "KEGG compound ID", "KEGG compound identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2894 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2894 . -:data_2606 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2355 . - -:data_2608 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name (not necessarily stable) an entry (RNA family) from the RFAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2355 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2108 . - -:data_2609 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "R[0-9]+" ; + ns2:hasDefinition "Identifier of a biological reaction from the KEGG reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2091, - :data_2895 . - -:data_2611 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "D[0-9]+" ; + ns2:hasDefinition "Unique identifier of a drug from the KEGG Drug database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2091, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1622 ], - :data_1150, - :data_2091 . - -:data_2612 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[A-Z][0-9]+(\\.[-[0-9]+])?" ; + ns2:hasDefinition "An identifier of a disease from the International Classification of Diseases (ICD) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1622 ], + ns1:data_1150, + ns1:data_2091 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\\.[0-9])?" ; + ns2:hasDefinition "Unique identifier of a sequence cluster from the CluSTr database." ; + ns2:hasExactSynonym "CluSTr ID", "CluSTr cluster ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . -:data_2613 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1154, - :data_2091, - :data_2900 . - -:data_2614 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "G[0-9]+" ; + ns2:hasDefinition "Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1154, + ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+\\.[A-Z]\\.[0-9]+\\.[0-9]+\\.[0-9]+" ; + ns2:hasDefinition "A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins." ; + ns2:hasExactSynonym "TC number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "OBO file for regular expression." ; - rdfs:subClassOf :data_2091, - :data_2910 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . -:data_2615 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2616 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "MINT\\-[0-9]{1,5}" ; + ns2:hasDefinition "Unique identifier of an entry from the MINT database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2617 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "DIP[\\:\\-][0-9]{3}[EN]" ; + ns2:hasDefinition "Unique identifier of an entry from the DIP database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2619 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "A[0-9]{6}" ; + ns2:hasDefinition "Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2618 . - -:data_2620 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "AA[0-9]{4}" ; + ns2:hasDefinition "Identifier of a protein modification catalogued in the RESID database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2618 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2621 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{4,7}" ; + ns2:hasDefinition "Identifier of an entry from the RGD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2387 . - -:data_2622 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "AASequence:[0-9]{10}" ; + ns2:hasDefinition "Identifier of a protein sequence from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2387 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2625 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "HMDB[0-9]{5}" ; + ns2:hasDefinition "Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB)." ; + ns2:hasExactSynonym "HMDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2905 . - -:data_2626 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})?" ; + ns2:hasDefinition "Identifier of an entry from the LIPID MAPS database." ; + ns2:hasExactSynonym "LM ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2905 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2906 . - -:data_2627 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PAp[0-9]{8}" ; + ns2:hasDbXref "PDBML:pdbx_PDB_strand_id" ; + ns2:hasDefinition "Identifier of a peptide from the PeptideAtlas peptide databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2906 . + +ns1:data_2627 a owl:Class ; rdfs:label "Molecular interaction ID" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "Identifier of a report of molecular interactions from a database (typically)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1074 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "Identifier of a report of molecular interactions from a database (typically)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1074 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2628 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2629 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "A unique identifier of an interaction from the BioGRID database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . - -:data_2631 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "S[0-9]{2}\\.[0-9]{3}" ; + ns2:hasDefinition "Unique identifier of a peptidase enzyme from the MEROPS database." ; + ns2:hasExactSynonym "MEROPS ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2630 . - -:data_2634 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "mge:[0-9]+" ; + ns2:hasDefinition "An identifier of a mobile genetic element from the Aclame database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2630 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2633 . - -:data_2635 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X)" ; + ns2:hasDefinition "The International Standard Book Number (ISBN) is for identifying printed books." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2633 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2636 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "B[0-9]{5}" ; + ns2:hasDefinition "Identifier of a metabolite from the 3DMET database." ; + ns2:hasExactSynonym "3DMET ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2637 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1: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_.*)" ; + ns2:hasDefinition "A unique identifier of an interaction from the MatrixDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2365 . -:data_2638 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976, - :data_2639 . - -:data_2641 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an assay from the PubChem database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976, + ns1:data_2639 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2108 . - -:data_2642 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "M[0-9]{4}" ; + ns2:hasDefinition "Identifier of an enzyme reaction mechanism from the MACie database." ; + ns2:hasExactSynonym "MACie entry number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2108 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:regex "MI[0-9]{7}" ; + ns2:hasDefinition "Identifier for a gene from the miRBase database." ; + ns2:hasExactSynonym "miRNA ID", "miRNA identifier", "miRNA name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . -:data_2643 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2644 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "ZDB\\-GENE\\-[0-9]+\\-[0-9]+" ; + ns2:hasDefinition "Identifier for a gene from the Zebrafish information network genome (ZFIN) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2108 . - -:data_2645 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{5}" ; + ns2:hasDefinition "Identifier of an enzyme-catalysed reaction from the Rhea database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2646 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "UPA[0-9]{5}" ; + ns2:hasDefinition "Identifier of a biological pathway from the Unipathway database." ; + ns2:hasExactSynonym "upaid" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2647 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a small molecular from the ChEMBL database." ; + ns2:hasExactSynonym "ChEMBL ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2648 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+" ; + ns2:hasDefinition "Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2309 . - -:data_2650 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2309 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365, - :data_2649 . - -:data_2651 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365, + ns1:data_2649 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1150, - :data_2091, - :data_2649 . - -:data_2652 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1150, + ns1:data_2091, + ns1:data_2649 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2649, - :data_2895 . - -:data_2653 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2649, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2895 . - -:data_2654 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "DAP[0-9]+" ; + ns2:hasDefinition "Identifier of a drug from the Therapeutic Target Database (TTD)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2656 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "TTDS[0-9]+" ; + ns2:hasDefinition "Identifier of a target protein from the Therapeutic Target Database (TTD)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2893 . - -:data_2657 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "A unique identifier of a neuron from the NeuronDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2893 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2893 . - -:data_2658 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+" ; + ns2:hasDefinition "A unique identifier of a neuron from the NeuroMorpho database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2893 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2894 . - -:data_2659 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a chemical from the ChemIDplus database." ; + ns2:hasExactSynonym "ChemIDplus ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2660 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "SMP[0-9]{5}" ; + ns2:hasDefinition "Identifier of a pathway from the Small Molecule Pathway Database (SMPDB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091 . - -:data_2662 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2897 . - -:data_2664 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "T3D[0-9]+" ; + ns2:hasDefinition "Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2897 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2900 . - -:data_2665 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the GlycomeDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2905 . - -:data_2666 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9]+[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the LipidBank database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2905 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1038, - :data_2091 . - -:data_2667 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "cd[0-9]{5}" ; + ns2:hasDefinition "Identifier of a conserved domain from the Conserved Domain Database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1038, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1070, - :data_2091 . - -:data_2668 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{1,5}" ; + ns2:hasDefinition "An identifier of an entry from the MMDB database." ; + ns2:hasExactSynonym "MMDB accession" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1070, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1074, - :data_2091 . - -:data_2669 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Unique identifier of an entry from the iRefIndex database of protein-protein interactions." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1074, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2891 . - -:data_2670 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Unique identifier of an entry from the ModelDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2891 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2671 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1:data_2671 a owl:Class ; rdfs:label "Ensembl ID (Homo sapiens)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENS([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENS([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2672 a owl:Class ; +ns1:data_2672 a owl:Class ; rdfs:label "Ensembl ID ('Bos taurus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSBTA([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSBTA([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2673 a owl:Class ; +ns1:data_2673 a owl:Class ; rdfs:label "Ensembl ID ('Canis familiaris')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCAF([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCAF([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2674 a owl:Class ; +ns1:data_2674 a owl:Class ; rdfs:label "Ensembl ID ('Cavia porcellus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCPO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCPO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2675 a owl:Class ; +ns1:data_2675 a owl:Class ; rdfs:label "Ensembl ID ('Ciona intestinalis')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCIN([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCIN([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2676 a owl:Class ; +ns1:data_2676 a owl:Class ; rdfs:label "Ensembl ID ('Ciona savignyi')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSCSAV([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSCSAV([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2677 a owl:Class ; +ns1:data_2677 a owl:Class ; rdfs:label "Ensembl ID ('Danio rerio')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSDAR([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSDAR([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2678 a owl:Class ; +ns1:data_2678 a owl:Class ; rdfs:label "Ensembl ID ('Dasypus novemcinctus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSDNO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSDNO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2679 a owl:Class ; +ns1:data_2679 a owl:Class ; rdfs:label "Ensembl ID ('Echinops telfairi')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSETE([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSETE([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2680 a owl:Class ; +ns1:data_2680 a owl:Class ; rdfs:label "Ensembl ID ('Erinaceus europaeus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSEEU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSEEU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2681 a owl:Class ; +ns1:data_2681 a owl:Class ; rdfs:label "Ensembl ID ('Felis catus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSFCA([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSFCA([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2682 a owl:Class ; +ns1:data_2682 a owl:Class ; rdfs:label "Ensembl ID ('Gallus gallus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSGAL([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSGAL([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2683 a owl:Class ; +ns1:data_2683 a owl:Class ; rdfs:label "Ensembl ID ('Gasterosteus aculeatus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSGAC([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSGAC([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2684 a owl:Class ; +ns1:data_2684 a owl:Class ; rdfs:label "Ensembl ID ('Homo sapiens')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSHUM([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSHUM([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2685 a owl:Class ; +ns1:data_2685 a owl:Class ; rdfs:label "Ensembl ID ('Loxodonta africana')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSLAF([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSLAF([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2686 a owl:Class ; +ns1:data_2686 a owl:Class ; rdfs:label "Ensembl ID ('Macaca mulatta')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMMU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMMU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2687 a owl:Class ; +ns1:data_2687 a owl:Class ; rdfs:label "Ensembl ID ('Monodelphis domestica')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMOD([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMOD([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2688 a owl:Class ; +ns1:data_2688 a owl:Class ; rdfs:label "Ensembl ID ('Mus musculus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMUS([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMUS([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2689 a owl:Class ; +ns1:data_2689 a owl:Class ; rdfs:label "Ensembl ID ('Myotis lucifugus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSMLU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSMLU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2690 a owl:Class ; +ns1:data_2690 a owl:Class ; rdfs:label "Ensembl ID (\"Ornithorhynchus anatinus\")" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSOAN([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSOAN([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2691 a owl:Class ; +ns1:data_2691 a owl:Class ; rdfs:label "Ensembl ID ('Oryctolagus cuniculus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSOCU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSOCU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2692 a owl:Class ; +ns1:data_2692 a owl:Class ; rdfs:label "Ensembl ID ('Oryzias latipes')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSORL([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSORL([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2693 a owl:Class ; +ns1:data_2693 a owl:Class ; rdfs:label "Ensembl ID ('Otolemur garnettii')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSSAR([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSSAR([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2694 a owl:Class ; +ns1:data_2694 a owl:Class ; rdfs:label "Ensembl ID ('Pan troglodytes')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSPTR([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSPTR([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2695 a owl:Class ; +ns1:data_2695 a owl:Class ; rdfs:label "Ensembl ID ('Rattus norvegicus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSRNO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSRNO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2696 a owl:Class ; +ns1:data_2696 a owl:Class ; rdfs:label "Ensembl ID ('Spermophilus tridecemlineatus')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSSTO([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSSTO([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2697 a owl:Class ; +ns1:data_2697 a owl:Class ; rdfs:label "Ensembl ID ('Takifugu rubripes')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSFRU([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSFRU([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2698 a owl:Class ; +ns1:data_2698 a owl:Class ; rdfs:label "Ensembl ID ('Tupaia belangeri')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSTBE([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSTBE([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2699 a owl:Class ; +ns1:data_2699 a owl:Class ; rdfs:label "Ensembl ID ('Xenopus tropicalis')" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - :regex "ENSXET([EGTP])[0-9]{11}" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns1:regex "ENSXET([EGTP])[0-9]{11}" ; + ns2:consider ns1:data_2610 ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2701 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1043 . - -:data_2702 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "2.10.10.10" ; + ns2:hasDefinition "A code number identifying a family from the CATH database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1043 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2321 . - -:data_2704 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an enzyme from the CAZy enzymes database." ; + ns2:hasExactSynonym "CAZy ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2321 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence)." ; + ns2:hasExactSynonym "I.M.A.G.E. cloneID", "IMAGE cloneID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1855, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1855, + ns1:data_2091 . -:data_2705 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1176 . - -:data_2706 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a 'cellular component' concept from the Gene Ontology." ; + ns2:hasExactSynonym "GO concept identifier (cellular compartment)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1176 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0987 . - -:data_2709 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a chromosome as used in the BioCyc database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0987 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1080, - :data_2091 . - -:data_2710 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a gene expression profile from the CleanEx database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1080, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_2713 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2714 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein complex from the CORUM database." ; + ns2:hasExactSynonym "CORUM complex ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1115, - :data_2091 . - -:data_2715 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a position-specific scoring matrix from the CDD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1115, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2716 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the CuticleDB database." ; + ns2:hasExactSynonym "CuticleDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2911 . - -:data_2719 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a predicted transcription factor from the DBD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2911 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2718 . - -:data_2720 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an oligonucleotide probe from the dbProbe database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2718 . + +ns1:data_2720 a owl:Class ; rdfs:label "Dinucleotide property" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Physicochemical property data for one or more dinucleotides." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2088 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Physicochemical property data for one or more dinucleotides." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2088 . -:data_2721 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2718 . - -:data_2722 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an dinucleotide property from the DiProDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2718 . + +ns1:data_2722 a owl:Class ; rdfs:label "Protein features report (disordered structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "disordered structure in a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "disordered structure in a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2723 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2724 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the DisProt database." ; + ns2:hasExactSynonym "DisProt ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1:data_2724 a owl:Class ; rdfs:label "Embryo report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1713 ; - oboInOwl:hasDefinition "Annotation on an embryo or concerning embryological development." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1713 ; + ns2:hasDefinition "Annotation on an embryo or concerning embryological development." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2725 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2610, - :data_2769 . - -:data_2726 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a gene transcript from the Ensembl database." ; + ns2:hasExactSynonym "Transcript ID (Ensembl)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2610, + ns1:data_2769 . + +ns1:data_2726 a owl:Class ; rdfs:label "Inhibitor annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_0962 ; - oboInOwl:hasDefinition "An informative report on one or more small molecules that are enzyme inhibitors." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_0962 ; + ns2:hasDefinition "An informative report on one or more small molecules that are enzyme inhibitors." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2729 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2728 . - -:data_2730 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an EST sequence from the COGEME database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2728 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a unisequence from the COGEME database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "A unisequence is a single sequence assembled from ESTs." ; - rdfs:subClassOf :data_2091, - :data_2728 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2728 . -:data_2731 a owl:Class ; +ns1:data_2731 a owl:Class ; rdfs:label "Protein family ID (GeneFarm)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; - oboInOwl:hasExactSynonym "GeneFarm family ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2733 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; + ns2:hasExactSynonym "GeneFarm family ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1:data_2733 a owl:Class ; rdfs:label "Genus name (virus)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1870 ; - oboInOwl:hasDefinition "The name of a genus of viruses." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1870 ; + ns2:hasDefinition "The name of a genus of viruses." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2734 a owl:Class ; +ns1:data_2734 a owl:Class ; rdfs:label "Family name (virus)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2732 ; - oboInOwl:hasDefinition "The name of a family of viruses." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2732 ; + ns2:hasDefinition "The name of a family of viruses." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2735 a owl:Class ; +ns1:data_2735 a owl:Class ; rdfs:label "Database name (SwissRegulon)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a SwissRegulon database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a SwissRegulon database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2736 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A feature identifier as used in the SwissRegulon database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1015, + ns1:data_2091 . -:data_2737 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the NMPDR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . -:data_2738 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2739 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the Xenbase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2740 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the Genolist database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2740 a owl:Class ; rdfs:label "Gene name (Genolist)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the Genolist genes database." ; - oboInOwl:hasExactSynonym "Genolist gene name" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the Genolist genes database." ; + ns2:hasExactSynonym "Genolist gene name" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2741 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2727 . - -:data_2742 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry (promoter) from the ABS database." ; + ns2:hasExactSynonym "ABS identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2727 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2911 . - -:data_2743 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a transcription factor from the AraC-XylS database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2911 . + +ns1:data_2743 a owl:Class ; rdfs:label "Gene name (HUGO)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1026 ; - oboInOwl:hasDefinition "Name of an entry (gene) from the HUGO database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1026 ; + ns2:hasDefinition "Name of an entry (gene) from the HUGO database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2744 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_2745 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a locus from the PseudoCAP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091 . - -:data_2746 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a locus from the UTR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2898 . - -:data_2747 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of a monosaccharide from the MonosaccharideDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2898 . + +ns1:data_2747 a owl:Class ; rdfs:label "Database name (CMD)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a subdivision of the Collagen Mutation Database (CMD) database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a subdivision of the Collagen Mutation Database (CMD) database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2748 a owl:Class ; +ns1:data_2748 a owl:Class ; rdfs:label "Database name (Osteogenesis)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0957 ; - oboInOwl:hasDefinition "The name of a subdivision of the Osteogenesis database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0957 ; + ns2:hasDefinition "The name of a subdivision of the Osteogenesis database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2751 a owl:Class ; +ns1:data_2751 a owl:Class ; rdfs:label "GenomeReviews ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An identifier of a particular genome." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2903 . - -:data_2752 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a particular genome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2903 . + +ns1:data_2752 a owl:Class ; rdfs:label "GlycoMap ID" ; - :created_in "beta12orEarlier" ; - :regex "[0-9]+" ; - oboInOwl:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2900 . - -:data_2753 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3425 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A conformational energy map of the glycosidic linkages in a carbohydrate molecule." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3425 . -:data_2755 a owl:Class ; +ns1:data_2755 a owl:Class ; rdfs:label "Transcription factor name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a transcription factor." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009, - :data_1077 . - -:data_2756 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a transcription factor." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009, + ns1:data_1077 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2757 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a membrane transport proteins from the transport classification database (TCDB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1131 . - -:data_2758 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PF[0-9]{5}" ; + ns2:hasDefinition "Name of a domain from the Pfam database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1131 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2759 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "CL[0-9]{4}" ; + ns2:hasDefinition "Accession number of a Pfam clan." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2761 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for a gene from the VectorBase database." ; + ns2:hasExactSynonym "VectorBase ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1114 . - -:data_2763 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1114 . + +ns1:data_2763 a owl:Class ; rdfs:label "Locus annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_0916 ; - oboInOwl:hasDefinition "An informative report on a particular locus." ; - oboInOwl:hasExactSynonym "Locus report" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "An informative report on a particular locus." ; + ns2:hasExactSynonym "Locus report" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2764 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009 . - -:data_2765 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Official name of a protein as used in the UniProt database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009 . + +ns1:data_2765 a owl:Class ; rdfs:label "Term ID list" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2872 ; - oboInOwl:hasDefinition "One or more terms from one or more controlled vocabularies which are annotations on an entity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2872 ; + ns2:hasDefinition "One or more terms from one or more controlled vocabularies which are annotations on an entity." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2767 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a protein family from the HAMAP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1:data_2767 a owl:Class ; rdfs:label "Identifier with metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:data_0842 ; + ns2:hasDefinition "Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2768 a owl:Class ; +ns1:data_2768 a owl:Class ; rdfs:label "Gene symbol annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "Annotation about a gene symbol." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "Annotation about a gene symbol." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2770 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2769 . - -:data_2771 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an RNA transcript from the H-InvDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2769 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2772 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene cluster in the H-InvDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2773 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a antibody from the HPA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2774 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2775 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1:data_2775 a owl:Class ; rdfs:label "Kinase name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a kinase protein." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009 . - -:data_2776 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a kinase protein." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2917 . - -:data_2777 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a physical entity from the ConsensusPathDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2917 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2917 . - -:data_2778 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a physical entity from the ConsensusPathDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2917 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2912 . - -:data_2780 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The number of a strain of algae and protozoa from the CCAP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2912 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2779 . - -:data_2781 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A stock number from The Arabidopsis information resource (TAIR)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2779 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_2782 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the RNA editing database (REDIdb)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1131 . - -:data_2783 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a domain from the SMART database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1131 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2910 . - -:data_2784 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry (family) from the PANTHER database." ; + ns2:hasExactSynonym "Panther family ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2910 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier for a virus from the RNAVirusDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2785 . -:data_2786 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2903 . - -:data_2787 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a genome project assigned by NCBI." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2903 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2903 . - -:data_2788 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of a whole genome assigned by the NCBI." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2903 . + +ns1:data_2788 a owl:Class ; rdfs:label "Sequence profile data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0860 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0860 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2789 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2791 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a membrane protein from the TopDB database." ; + ns2:hasExactSynonym "TopDB ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2790 . - -:data_2792 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a reference map gel from the SWISS-2DPAGE database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2790 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2793 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a peroxidase protein from the PeroxiBase database." ; + ns2:hasExactSynonym "PeroxiBase ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1072, - :data_2091 . - -:data_2794 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the SISYPHUS database of tertiary structure alignments." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1072, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1893, - :data_2091, - :data_2795 . - -:data_2796 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an open reading frame (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1893, + ns1:data_2091, + ns1:data_2795 . + +ns1:data_2796 a owl:Class ; rdfs:label "Linucs ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2900 . - -:data_2797 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2900 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2798 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a ligand-gated ion channel protein from the LGICdb database." ; + ns2:hasExactSynonym "LGICdb ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2728 . - -:data_2799 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an EST sequence from the MaizeDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2728 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2800 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of gene in the MfunGD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1622 ], - :data_1150, - :data_2091 . - -:data_2802 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a disease from the Orpha database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1622 ], + ns1:data_1150, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2803 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a protein from the EcID database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1098, - :data_1855 . - -:data_2804 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of a cDNA molecule catalogued in the RefSeq database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1098, + ns1:data_1855 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2907 . - -:data_2805 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier for a cone snail toxin protein from the ConoServer database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . + +ns1:data_2805 a owl:Class ; rdfs:label "GeneSNP ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of a GeneSNP database entry." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_2831 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a GeneSNP database entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1:data_2831 a owl:Class ; rdfs:label "Databank" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A flat-file (textual) data archive." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0957 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A flat-file (textual) data archive." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0957 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2832 a owl:Class ; +ns1:data_2832 a owl:Class ; rdfs:label "Web portal" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A web site providing data (web pages) on a common theme to a HTTP client." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0958 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A web site providing data (web pages) on a common theme to a HTTP client." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0958 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2835 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2836 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for a gene from the VBASE2 database." ; + ns2:hasExactSynonym "VBASE2 ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2785 . - -:data_2837 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier for a virus from the DPVweb database." ; + ns2:hasExactSynonym "DPVweb virus ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2785 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2365 . - -:data_2838 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the BioSystems pathway database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2365 . + +ns1:data_2838 a owl:Class ; rdfs:label "Experimental data (proteomics)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2531 ; - oboInOwl:hasDefinition "Data concerning a proteomics experiment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2531 ; + ns2:hasDefinition "Data concerning a proteomics experiment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2856 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2855 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Distances (values representing similarity) between a group of molecular structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2855 . -:data_2857 a owl:Class ; +ns1:data_2857 a owl:Class ; rdfs:label "Article metadata" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2526 ; - oboInOwl:hasDefinition "Bibliographic data concerning scientific article(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2526 ; + ns2:hasDefinition "Bibliographic data concerning scientific article(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2866 a owl:Class ; +ns1:data_2866 a owl:Class ; rdfs:label "Northern blot report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Northern Blot experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Northern Blot experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2874 a owl:Class ; +ns1:data_2874 a owl:Class ; rdfs:label "Sequence set (polymorphic)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1234 ; + ns2:hasDefinition "A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2875 a owl:Class ; +ns1:data_2875 a owl:Class ; rdfs:label "DRCAT resource" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1883 ; - oboInOwl:hasDefinition "An entry (resource) from the DRCAT bioinformatics resource catalogue." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1883 ; + ns2:hasDefinition "An entry (resource) from the DRCAT bioinformatics resource catalogue." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2878 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1460 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1460 . -:data_2880 a owl:Class ; +ns1:data_2880 a owl:Class ; rdfs:label "Secondary structure image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :data_2992 ; - oboInOwl:hasDefinition "Image of one or more molecular secondary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:data_2992 ; + ns2:hasDefinition "Image of one or more molecular secondary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2881 a owl:Class ; +ns1:data_2881 a owl:Class ; rdfs:label "Secondary structure report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2085 ; - oboInOwl:hasDefinition "An informative report on general information, properties or features of one or more molecular secondary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2085 ; + ns2:hasDefinition "An informative report on general information, properties or features of one or more molecular secondary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2882 a owl:Class ; +ns1:data_2882 a owl:Class ; rdfs:label "DNA features" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_1276 ; - oboInOwl:hasDefinition "DNA sequence-specific feature annotation (not in a feature table)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_1276 ; + ns2:hasDefinition "DNA sequence-specific feature annotation (not in a feature table)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2883 a owl:Class ; +ns1:data_2883 a owl:Class ; rdfs:label "RNA features report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0916 ; - oboInOwl:hasDefinition "Features concerning RNA or regions of DNA that encode an RNA molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "Features concerning RNA or regions of DNA that encode an RNA molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2886 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0849, - :data_2976 . - -:data_2887 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A protein sequence and associated metadata." ; + ns2:hasExactSynonym "Sequence record (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0849, + ns1:data_2976 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A nucleic acid sequence and associated metadata." ; + ns2:hasExactSynonym "Nucleotide sequence record", "Sequence record (nucleic acid)" ; - oboInOwl:hasNarrowSynonym "DNA sequence record", + ns2:hasNarrowSynonym "DNA sequence record", "RNA sequence record" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0849, - :data_2977 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0849, + ns1:data_2977 . -:data_2888 a owl:Class ; +ns1:data_2888 a owl:Class ; rdfs:label "Protein sequence record (full)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2889 a owl:Class ; +ns1:data_2889 a owl:Class ; rdfs:label "Nucleic acid sequence record (full)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0849 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0849 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2892 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2655 . - -:data_2896 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a type or group of cells." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2655 . + +ns1:data_2896 a owl:Class ; rdfs:label "Toxin name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a toxin." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_2576 . - -:data_2899 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a toxin." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_2576 . + +ns1:data_2899 a owl:Class ; rdfs:label "Drug name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Common name of a drug." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0990, - :data_0993 . - -:data_2904 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Common name of a drug." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0990, + ns1:data_0993 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2117 . - -:data_2916 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of a map of a molecular sequence (deposited in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2117 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of an entry from the DDBJ sequence database." ; + ns2:hasExactSynonym "DDBJ ID", "DDBJ accession number", "DDBJ identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1103 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1103 . -:data_2925 a owl:Class ; +ns1:data_2925 a owl:Class ; rdfs:label "Sequence data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_2534 ; - oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_2534 ; + ns2:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular sequence(s)." ; + ns2:inSubset ns4: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 ; +ns1:data_2927 a owl:Class ; rdfs:label "Codon usage" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0914 ; - oboInOwl:hasDefinition "Data concerning codon usage." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0914 ; + ns2:hasDefinition "Data concerning codon usage." ; + ns2:inSubset ns4: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 ; +ns1:data_2954 a owl:Class ; rdfs:label "Article report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0972, + ns1:data_3779 ; + ns2:hasDefinition "Data derived from the analysis of a scientific text such as a full text article from a scientific journal." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2957 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1534, - :data_2884 . - -:data_2958 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A Hopp and Woods plot of predicted antigenicity of a peptide or protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1534, + ns1:data_2884 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583, + ns1:data_2884 ; + ns2:hasDefinition "A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2959 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583 ; + ns2:hasDefinition "A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2960 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1583 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1583 ; + ns2:hasDefinition "A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1583 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2961 a owl:Class ; +ns1:data_2961 a owl:Class ; rdfs:label "Gene regulatory network report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report typically including a map (diagram) of a gene regulatory network." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2984 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report typically including a map (diagram) of a gene regulatory network." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2984 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2965 a owl:Class ; +ns1:data_2965 a owl:Class ; rdfs:label "2D PAGE gel report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "An informative report on a two-dimensional (2D PAGE) gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "An informative report on a two-dimensional (2D PAGE) gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2966 a owl:Class ; +ns1:data_2966 a owl:Class ; rdfs:label "Oligonucleotide probe sets annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.14" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_2717 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.14" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2717 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2967 a owl:Class ; +ns1:data_2967 a owl:Class ; rdfs:label "Microarray image" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2968 ; + ns2:hasDefinition "An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2971 a owl:Class ; +ns1:data_2971 a owl:Class ; rdfs:label "Workflow data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0949 ; - oboInOwl:hasDefinition "Data concerning a computational workflow." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0949 ; + ns2:hasDefinition "Data concerning a computational workflow." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2972 a owl:Class ; +ns1:data_2972 a owl:Class ; rdfs:label "Workflow" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0949 ; - oboInOwl:hasDefinition "A computational workflow." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0949 ; + ns2:hasDefinition "A computational workflow." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2973 a owl:Class ; +ns1:data_2973 a owl:Class ; rdfs:label "Secondary structure data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2085 ; - oboInOwl:hasDefinition "Data concerning molecular secondary structure data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2085 ; + ns2:hasDefinition "Data concerning molecular secondary structure data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2974 a owl:Class ; +ns1: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:hasExactSynonym "Raw amino acid sequence", + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_0848 ; + ns2:hasDefinition "A raw protein sequence (string of characters)." ; + ns2:hasExactSynonym "Raw amino acid sequence", "Raw amino acid sequences", "Raw protein sequence", "Raw sequence (protein)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2976 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2976 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2980 a owl:Class ; +ns1: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" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "An informative report concerning the classification of protein sequences or structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "An informative report concerning the classification of protein sequences or structures." ; + ns2:inSubset ns4: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 ; +ns1:data_2981 a owl:Class ; rdfs:label "Sequence motif data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Data concerning specific or conserved pattern in molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_0860 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Data concerning specific or conserved pattern in molecular sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_2982 a owl:Class ; rdfs:label "Sequence profile data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1354 ; - oboInOwl:hasDefinition "Data concerning models representing a (typically multiple) sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1354 ; + ns2:hasDefinition "Data concerning models representing a (typically multiple) sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:data_2983 a owl:Class ; rdfs:label "Pathway or network data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_2600, - :data_2984 ; - oboInOwl:hasDefinition "Data concerning a specific biological pathway or network." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_2600, + ns1:data_2984 ; + ns2:hasDefinition "Data concerning a specific biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2986 a owl:Class ; +ns1: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" ; - oboInOwl:consider :data_3148 ; - oboInOwl:hasDefinition "Data concerning the classification of nucleic acid sequences or structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3148 ; + ns2:hasDefinition "Data concerning the classification of nucleic acid sequences or structures." ; + ns2:inSubset ns4: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 ; +ns1:data_2987 a owl:Class ; rdfs:label "Classification report" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_2048 ; - oboInOwl:hasDefinition "A report on a classification of molecular sequences, structures or other entities." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_2048 ; + ns2:hasDefinition "A report on a classification of molecular sequences, structures or other entities." ; + ns2:inSubset ns4: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 ; +ns1:data_2989 a owl:Class ; rdfs:label "Protein features report (key folding sites)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "key residues involved in protein folding." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "key residues involved in protein folding." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2994 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . -:data_3022 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2127 . - -:data_3026 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:example "16" ; + ns1:regex "[1-9][0-9]?" ; + ns2:hasDefinition "Identifier of a genetic code in the NCBI list of genetic codes." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2127 . + +ns1:data_3026 a owl:Class ; rdfs:label "GO concept name (biological process)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept for a biological process from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept for a biological process from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3027 a owl:Class ; +ns1:data_3027 a owl:Class ; rdfs:label "GO concept name (molecular function)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :data_2339 ; - oboInOwl:hasDefinition "The name of a concept for a molecular function from the GO ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:data_2339 ; + ns2:hasDefinition "The name of a concept for a molecular function from the GO ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3028 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning the classification, identification and naming of organisms." ; + ns2:hasExactSynonym "Taxonomic data" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:data_0006 . -:data_3029 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta13" ; + ns2:hasDefinition "EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2907 . -:data_3031 a owl:Class ; +ns1:data_3031 a owl:Class ; rdfs:label "Core data" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0006 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_3085 a owl:Class ; rdfs:label "Protein sequence composition" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1261 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report (typically a table) on character or word composition / frequency of protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1261 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3086 a owl:Class ; +ns1:data_3086 a owl:Class ; rdfs:label "Nucleic acid sequence composition (report)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1261 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1261 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3101 a owl:Class ; +ns1:data_3101 a owl:Class ; rdfs:label "Protein domain classification node" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "A node from a classification of protein structural domain(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "A node from a classification of protein structural domain(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3102 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1002 ; + ns1:created_in "beta13" ; + ns1:deprecation_comment "Duplicates http://edamontology.org/data_1002, hence deprecated." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2895 ; + ns2:hasDefinition "Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1002 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3103 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2895 . - -:data_3104 a owl:Class ; + ns1:created_in "beta13" ; + ns2: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)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2895 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086 . - -:data_3105 a owl:Class ; + ns1:created_in "beta13" ; + ns2:hasDefinition "A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA)." ; + ns2:hasExactSynonym "Unique Ingredient Identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086 . + +ns1:data_3105 a owl:Class ; rdfs:label "Geotemporal metadata" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0006 ; - oboInOwl:hasDefinition "Basic information concerning geographical location or time." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0006 ; + ns2:hasDefinition "Basic information concerning geographical location or time." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3107 a owl:Class ; +ns1:data_3107 a owl:Class ; rdfs:label "Sequence feature name" ; - :created_in "beta13" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1022 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1022 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3116 a owl:Class ; +ns1:data_3116 a owl:Class ; rdfs:label "Microarray protocol annotation" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Annotation on laboratory and/or data processing protocols used in an microarray experiment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Annotation on laboratory and/or data processing protocols used in an microarray experiment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_3119 a owl:Class ; rdfs:label "Sequence features (compositionally-biased regions)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_1261 ; - oboInOwl:hasDefinition "A report of regions in a molecular sequence that are biased to certain characters." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_1261 ; + ns2:hasDefinition "A report of regions in a molecular sequence that are biased to certain characters." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3122 a owl:Class ; +ns1:data_3122 a owl:Class ; rdfs:label "Nucleic acid features (difference and change)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:hasDefinition "A report on features in a nucleic acid sequence that indicate changes to or differences between sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:hasDefinition "A report on features in a nucleic acid sequence that indicate changes to or differences between sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3129 a owl:Class ; +ns1:data_3129 a owl:Class ; rdfs:label "Protein features report (repeats)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "short repetitive subsequences (repeat sequences) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1277 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "short repetitive subsequences (repeat sequences) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1277 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3130 a owl:Class ; +ns1:data_3130 a owl:Class ; rdfs:label "Sequence motif matches (protein)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3131 a owl:Class ; +ns1:data_3131 a owl:Class ; rdfs:label "Sequence motif matches (nucleic acid)" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :data_0858 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_0858 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3132 a owl:Class ; +ns1:data_3132 a owl:Class ; rdfs:label "Nucleic acid features (d-loop)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3128 ; - oboInOwl:hasDefinition "A report on displacement loops in a mitochondrial DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3128 ; + ns2:hasDefinition "A report on displacement loops in a mitochondrial DNA sequence." ; + ns2:inSubset ns4: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 ; +ns1:data_3133 a owl:Class ; rdfs:label "Nucleic acid features (stem loop)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3128 ; - oboInOwl:hasDefinition "A report on stem loops in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3128 ; + ns2:hasDefinition "A report on stem loops in a DNA sequence." ; + ns2:inSubset ns4: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 ; +ns1:data_3137 a owl:Class ; rdfs:label "Non-coding RNA" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "features of non-coding or functional RNA molecules, including tRNA and rRNA." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1276 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "features of non-coding or functional RNA molecules, including tRNA and rRNA." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1276 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3138 a owl:Class ; +ns1:data_3138 a owl:Class ; rdfs:label "Transcriptional features (report)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3134 ; - oboInOwl:hasDefinition "Features concerning transcription of DNA into RNA including the regulation of transcription." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3134 ; + ns2:hasDefinition "Features concerning transcription of DNA into RNA including the regulation of transcription." ; + ns2:inSubset ns4: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 ; +ns1:data_3140 a owl:Class ; rdfs:label "Nucleic acid features (immunoglobulin gene structure)" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0916 ; + ns2:hasDefinition "A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3141 a owl:Class ; +ns1:data_3141 a owl:Class ; rdfs:label "SCOP class" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'class' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'class' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3142 a owl:Class ; +ns1:data_3142 a owl:Class ; rdfs:label "SCOP fold" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'fold' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'fold' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3143 a owl:Class ; +ns1:data_3143 a owl:Class ; rdfs:label "SCOP superfamily" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'superfamily' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'superfamily' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3144 a owl:Class ; +ns1:data_3144 a owl:Class ; rdfs:label "SCOP family" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'family' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'family' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3145 a owl:Class ; +ns1:data_3145 a owl:Class ; rdfs:label "SCOP protein" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'protein' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'protein' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3146 a owl:Class ; +ns1:data_3146 a owl:Class ; rdfs:label "SCOP species" ; - :created_in "beta13" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_0907 ; - oboInOwl:hasDefinition "Information on a 'species' node from the SCOP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0907 ; + ns2:hasDefinition "Information on a 'species' node from the SCOP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3147 a owl:Class ; +ns1:data_3147 a owl:Class ; rdfs:label "Mass spectrometry experiment" ; - :created_in "beta13" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "mass spectrometry experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "mass spectrometry experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3154 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2928 ; + ns2:consider ns1:data_0878, + ns1:data_1384, + ns1:data_1481 ; + ns2:hasDefinition "An alignment of protein sequences and/or structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:data_3165 a owl:Class ; +ns1:data_3165 a owl:Class ; rdfs:label "NGS experiment" ; - :created_in "1.0" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "sequencing experiment, including samples, sampling, preparation, sequencing, and analysis." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.0" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "sequencing experiment, including samples, sampling, preparation, sequencing, and analysis." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3231 a owl:Class ; +ns1:data_3231 a owl:Class ; rdfs:label "GWAS report" ; - :created_in "1.1" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Report concerning genome-wide association study experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report concerning genome-wide association study experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3238 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091, - :data_2893 . - -:data_3264 a owl:Class ; + ns1:created_in "1.2" ; + ns1:regex "CL_[0-9]{7}" ; + ns2:hasDefinition "Cell type ontology concept ID." ; + ns2:hasExactSynonym "CL ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091, + ns1:data_2893 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_3265 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Identifier of a COSMIC database entry." ; + ns2:hasExactSynonym "COSMIC identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2294 . - -:data_3266 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Identifier of a HGMD database entry." ; + ns2:hasExactSynonym "HGMD identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2294 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1064 . - -:data_3268 a owl:Class ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of sequence assembly." ; + ns2:hasNarrowSynonym "Sequence assembly version" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1064 . + +ns1:data_3268 a owl:Class ; rdfs:label "Sequence feature type" ; - :created_in "1.3" ; - :obsolete_since "1.5" ; - 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 edam:obsolete ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_0842 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3269 a owl:Class ; +ns1:data_3269 a owl:Class ; rdfs:label "Gene homology (report)" ; - :created_in "1.3" ; - :obsolete_since "1.5" ; - oboInOwl:consider :data_3148 ; - oboInOwl:hasDefinition "An informative report on gene homologues between species." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.5" ; + ns2:consider ns1:data_3148 ; + ns2:hasDefinition "An informative report on gene homologues between species." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3270 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1068, - :data_2091, - :data_2610 . - -:data_3271 a owl:Class ; + ns1:created_in "1.3" ; + ns1:example "ENSGT00390000003602" ; + ns2:hasDefinition "Unique identifier for a gene tree from the Ensembl database." ; + ns2:hasExactSynonym "Ensembl ID (gene tree)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1068, + ns1:data_2091, + ns1:data_2610 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0872 . + ns1:created_in "1.3" ; + ns2:hasDefinition "A phylogenetic tree that is an estimate of the character's phylogeny." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0872 . -:data_3272 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0872 . + ns1:created_in "1.3" ; + ns2:hasDefinition "A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0872 . -:data_3273 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_3113 ], - :data_0976 . - -:data_3274 a owl:Class ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of an entry from a biosample database." ; + ns2:hasExactSynonym "Sample accession" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_3113 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_3275 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Identifier of an object from the MGI database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_3275 a owl:Class ; rdfs:label "Phenotype name" ; - :created_in "1.3" ; - oboInOwl:hasDefinition "Name of a phenotype." ; - oboInOwl:hasExactSynonym "Phenotype", + ns1:created_in "1.3" ; + ns2:hasDefinition "Name of a phenotype." ; + ns2:hasExactSynonym "Phenotype", "Phenotypes" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . -:data_3356 a owl:Class ; +ns1:data_3356 a owl:Class ; rdfs:label "Hidden Markov model"@en ; - :created_in "1.4" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_1364 ; + ns1:created_in "1.4" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_1364 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3426 a owl:Class ; +ns1:data_3426 a owl:Class ; rdfs:label "Proteomics experiment report" ; - :created_in "1.5" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Report concerning proteomics experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.5" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Report concerning proteomics experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3427 a owl:Class ; +ns1:data_3427 a owl:Class ; rdfs:label "RNAi report" ; - :created_in "1.5" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "RNAi experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.5" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "RNAi experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3428 a owl:Class ; +ns1:data_3428 a owl:Class ; rdfs:label "Simulation experiment report" ; - :created_in "1.5" ; - :obsolete_since "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:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2531 ; + ns1:created_in "1.5" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2531 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3442 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." ; + ns2:hasExactSynonym "MRT image", "Magnetic resonance imaging image", "Magnetic resonance tomography image", "NMRI image", "Nuclear magnetic resonance imaging image" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3384 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3384 ], + ns1:data_3424 . -:data_3449 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "An image from a cell migration track assay." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2229 ], - :data_2968 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2229 ], + ns1:data_2968 . -:data_3451 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . - -:data_3479 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Rate of association of a protein with another protein or some other molecule." ; + ns2:hasExactSynonym "kon" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . + +ns1:data_3479 a owl:Class ; rdfs:label "Gene order" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Multiple gene identifiers in a specific order." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Multiple gene identifiers in a specific order." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Such data are often used for genome rearrangement tools and phylogenetic tree labeling." ; - rdfs:subClassOf :data_2082 . + rdfs:subClassOf ns1:data_2082 . -:data_3490 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_1712 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:data_1712 ; + ns2:hasDefinition "A sketch of a small molecule made with some specialised drawing package." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2762 . + ns1:created_in "1.8" ; + ns2:hasDefinition "An informative report about a specific or conserved nucleic acid sequence pattern." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2762 . -:data_3496 a owl:Class ; +ns1: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:hasExactSynonym "RNA raw sequence", + ns1:created_in "1.8" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2975 ; + ns2:hasDefinition "A raw RNA sequence." ; + ns2:hasExactSynonym "RNA raw sequence", "Raw RNA sequence", "Raw sequence (RNA)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_3495 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3495 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3497 a owl:Class ; +ns1: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:hasExactSynonym "DNA raw sequence", + ns1:created_in "1.8" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2975 ; + ns2:hasDefinition "A raw DNA sequence." ; + ns2:hasExactSynonym "DNA raw sequence", "Raw DNA sequence", "Raw sequence (DNA)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_3494 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_3494 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_3509 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2093 . + ns1:created_in "1.8" ; + ns2:hasDefinition "A mapping of supplied textual terms or phrases to ontology concepts (URIs)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2093 . -:data_3546 a owl:Class ; +ns1: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", + ns1:created_in "1.9" ; + ns2:hasDefinition "Any data concerning a specific biological or biomedical image." ; + ns2:hasExactSynonym "Image-associated data", "Image-related data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This can include basic provenance and technical information about the image, scientific annotation and so on." ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_3558 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_3568 a owl:Class ; + ns1:created_in "1.9" ; + ns2:hasDefinition "A human-readable collection of information concerning a clinical trial." ; + ns2:hasExactSynonym "Clinical trial information" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_3668 a owl:Class ; + ns1:created_in "1.10" ; + ns2:hasDefinition "Accession number of an entry from the Gene Expression Atlas." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1:data_3668 a owl:Class ; rdfs:label "Disease name" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "The name of some disease." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_3667 . - -:data_3670 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "The name of some disease." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3667 . + +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "A training course available for use on the Web." ; + ns2:hasExactSynonym "On-line course" ; + ns2:hasNarrowSynonym "MOOC", "Massive open online course" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3669 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3669 . -:data_3718 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3716 . - -:data_3719 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Information about the ability of an organism to cause disease in a corresponding host." ; + ns2:hasExactSynonym "Pathogenicity" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3716 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3716 . - -:data_3720 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Information about the biosafety classification of an organism according to corresponding law." ; + ns2:hasExactSynonym "Biosafety level" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3716 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3717 . + ns1:created_in "1.14" ; + ns2:hasDefinition "A report about localisation of the isolaton of biological material e.g. country or coordinates." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3717 . -:data_3721 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3717 . + ns1:created_in "1.14" ; + ns2:hasDefinition "A report about any kind of isolation source of biological material e.g. blood, water, soil." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3717 . -:data_3722 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns1:created_in "1.14" ; + ns2:hasDefinition "Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_3723 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns1:created_in "1.14" ; + ns2:hasDefinition "Experimentally determined parameter of the morphology of an organism, e.g. size & shape." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_3724 a owl:Class ; +ns1: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", + ns1:created_in "1.14" ; + ns2:hasDefinition "Experimental determined parameter for the cultivation of an organism." ; + ns2:hasExactSynonym "Cultivation conditions" ; + ns2:hasNarrowSynonym "Carbon source", "Culture media composition", "Nitrogen source", "Salinity", "Temperature", "pH value" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_3733 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.15" ; + ns2:hasDefinition "An identifier of a flow cell of a sequencing machine." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_3732 . -:data_3734 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3732 . + ns1:created_in "1.15" ; + ns2:hasDefinition "An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3732 . -:data_3735 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3732 . + ns1:created_in "1.15" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3732 . -:data_3737 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3707 . - -:data_3738 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasDefinition "The mean species diversity in sites or habitats at a local scale." ; + ns2:hasExactSynonym "α-diversity" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3707 . + +ns1: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", + ns1:created_in "1.15" ; + ns2:hasDefinition "The ratio between regional and local species diversity." ; + ns2:hasExactSynonym "True beta diversity", "β-diversity" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3707 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3707 . -:data_3739 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3707 . - -:data_3743 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasDefinition "The total species diversity in a landscape." ; + ns2:hasExactSynonym "ɣ-diversity" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3707 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897, - :data_2884 . - -:data_3756 a owl:Class ; + ns1:created_in "1.15" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897, + ns1:data_2884 . + +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry." ; + ns2:hasNarrowSynonym "False localisation rate", "PTM localisation", "PTM score" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_3757 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2618 . - -:data_3759 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Identifier of a protein modification catalogued in the Unimod database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2618 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1078 . - -:data_3769 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Identifier for mass spectrometry proteomics data in the proteomexchange.org repository." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1078 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_3807 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "An identifier of a concept from the BRENDA ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1:data_3807 a owl:Class ; rdfs:label "EM Movie" ; - :created_in "1.19" ; - oboInOwl:hasDefinition "Raw DDD movie acquisition from electron microscopy." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Raw DDD movie acquisition from electron microscopy." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3424 . -:data_3808 a owl:Class ; +ns1:data_3808 a owl:Class ; rdfs:label "EM Micrograph" ; - :created_in "1.19" ; - oboInOwl:hasDefinition "Raw acquistion from electron microscopy or average of an aligned DDD movie." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Raw acquistion from electron microscopy or average of an aligned DDD movie." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3424 . -:data_3842 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_0006 . -:data_3856 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Identifier of an entry from the RNA central database of annotated human miRNAs." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . -:data_3861 a owl:Class ; +ns1: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", + ns1:created_in "1.21" ; + ns2:hasDefinition "A human-readable systematic collection of patient (or population) health information in a digital format." ; + ns2:hasExactSynonym "EHR", "EMR", "Electronic medical record" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_3871 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3869 . + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3869 . -:data_3905 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2884 . - -:data_3914 a owl:Class ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots." ; + ns2:hasExactSynonym "Density plot" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2884 . + +ns1:data_3914 a owl:Class ; rdfs:label "Quality control report" ; - :created_in "1.23" ; - 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 "QC metrics", + ns1:created_in "1.23" ; + ns2: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." ; + ns2:hasExactSynonym "QC metrics", "QC report", "Quality control metrics" ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_3917 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . - -:data_3924 a owl:Class ; + ns1:created_in "1.23" ; + ns2:hasDefinition "A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak)." ; + ns2:hasExactSynonym "Read count matrix" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1482 . - -:data_3932 a owl:Class ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Alignment (superimposition) of DNA tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (DNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1482 . + +ns1: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", + ns1:created_in "1.24" ; + ns2: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)." ; + ns2:hasExactSynonym "Adjusted P-value", "FDR", "Padj", "pFDR" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0951 . -:data_3949 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso ; - rdfs:subClassOf :data_1354, - :data_1364 . + rdfs:subClassOf ns1:data_1354, + ns1:data_1364 . -:data_3952 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns1:documentation ; + ns1:regex "WP[0-9]+" ; + ns2:hasDefinition "Identifier of a pathway from the WikiPathways pathway database." ; + ns2:hasExactSynonym "WikiPathways ID", "WikiPathways pathway ID" ; - oboInOwl:inSubset edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109, - :data_2365 . + ns2:inSubset ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109, + ns1:data_2365 . -:data_3953 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Pathway analysis results", "Pathway enrichment report", "Pathway over-representation report", "Pathway report", "Pathway term enrichment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :data_3753 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:data_3753 . -:deprecation_comment a owl:AnnotationProperty ; +ns1:deprecation_comment a owl:AnnotationProperty ; rdfs:label "deprecation_comment" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.)" ; + ns2:inSubset "concept_properties" . -:documentation a owl:AnnotationProperty ; +ns1:documentation a owl:AnnotationProperty ; rdfs:label "Documentation" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasRelatedSynonym "Specification" ; + ns2:inSubset "concept_properties" . -:file_extension a owl:AnnotationProperty ; +ns1:file_extension a owl:AnnotationProperty ; rdfs:label "File extension" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats." ; - oboInOwl:inSubset "concept_properties" ; + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats." ; + ns2:inSubset "concept_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, preferrably not all capital characters." . -:format_1197 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2035, - :format_2330 . - -:format_1198 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . -:format_1199 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . -:format_1200 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1196 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1196 . -:format_1209 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2095, - :format_2097 . - -:format_1211 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for the consensus of two or more molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2095, + ns1:format_2097 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1207 . - -:format_1214 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1207 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1212 . - -:format_1215 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1212 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1210, - :format_1212 . - -:format_1216 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1210, + ns1:format_1212 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1213 . - -:format_1217 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1213 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1210, - :format_1213 . - -:format_1218 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1210, + ns1:format_1213 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1206, - :format_1208 . - -:format_1219 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1206, + ns1:format_1208 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1208, - :format_2094 . - -:format_1228 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1208, + ns1:format_2094 . + +ns1:format_1228 a owl:Class ; rdfs:label "UniGene entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from UniGene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from UniGene." ; + ns2:inSubset ns4: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 ; +ns1:format_1247 a owl:Class ; rdfs:label "COG sequence cluster format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the COG database of clusters of (related) protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the COG database of clusters of (related) protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1248 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2078, - :format_2330 . - -:format_1295 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database." ; + ns2:hasExactSynonym "Feature location" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2078, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2155, - :format_2330 . - -:format_1296 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2155, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2155, - :format_2330 . - -:format_1297 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2155, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2155, - :format_2330 . - -:format_1316 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for tandem repeats in a sequence (an EMBOSS report format)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2155, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2031, - :format_2330 . - -:format_1318 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a report on exon-intron structure generated by EMBOSS est2genome." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2031, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2158, - :format_2330 . - -:format_1319 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for restriction enzyme recognition sites used by EMBOSS restrict program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2158, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2158, - :format_2330 . - -:format_1320 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for restriction enzyme recognition sites used by EMBOSS restover program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2158, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2158, - :format_2330 . - -:format_1332 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format for restriction enzyme recognition sites used by REBASE database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2158, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using FASTA." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1334 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2330 . - -:format_1335 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using some variant of MSPCrunch." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2330 . - -:format_1336 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using some variant of Smith Waterman." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1337 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1342 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1341 . -:format_1343 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1341 . -:format_1349 a owl:Class ; +ns1:format_1349 a owl:Class ; rdfs:label "HMMER Dirichlet prior" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Dirichlet distribution HMMER format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2074, - :format_2330 . - -:format_1350 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dirichlet distribution HMMER format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2074, + ns1:format_2330 . + +ns1:format_1350 a owl:Class ; rdfs:label "MEME Dirichlet prior" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Dirichlet distribution MEME format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2074, - :format_2330 . - -:format_1351 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dirichlet distribution MEME format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2074, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2075, - :format_2330 . - -:format_1356 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2075, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2068, - :format_2330 . - -:format_1357 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a regular expression pattern from the Prosite database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2068, + ns1:format_2330 . + +ns1:format_1357 a owl:Class ; rdfs:label "EMBOSS sequence pattern" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of an EMBOSS sequence pattern." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2068, - :format_2330 . - -:format_1360 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of an EMBOSS sequence pattern." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2068, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2068, - :format_2330 . - -:format_1366 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A motif in the format generated by the MEME program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2068, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2069, - :format_2330 . - -:format_1367 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence profile (sequence classifier) format used in the PROSITE database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2069, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2069, - :format_2330 . - -:format_1369 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A profile (sequence classifier) in the format used in the JASPAR database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2069, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2072, - :format_2330 . - -:format_1391 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of the model of random sequences used by MEME." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2072, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2330, - :format_2554 . - -:format_1392 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA-style format for multiple sequences aligned by HMMER package to an HMM." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2330, + ns1:format_2554 . + +ns1:format_1392 a owl:Class ; rdfs:label "DIALIGN format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of multiple sequences aligned by DIALIGN package." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1393 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of multiple sequences aligned by DIALIGN package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The format is clustal-like and includes annotation of domain family classification information." ; - rdfs:subClassOf :format_2330, - :format_2554 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . -:format_1419 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2014, - :format_2330 . - -:format_1421 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2014, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2014, - :format_2330 . - -:format_1422 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2014, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2014, - :format_2330 . - -:format_1423 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2014, + ns1:format_2330 . + +ns1:format_1423 a owl:Class ; rdfs:label "Phylip distance matrix" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of PHYLIP phylogenetic distance matrix data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of PHYLIP phylogenetic distance matrix data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2067, + ns1:format_2330 . -:format_1424 a owl:Class ; +ns1:format_1424 a owl:Class ; rdfs:label "ClustalW dendrogram" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Dendrogram (tree file) format generated by ClustalW." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1425 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dendrogram (tree file) format generated by ClustalW." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1430 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2037, - :format_2330 . - -:format_1431 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PHYLIP file format for continuous quantitative character data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2037, + ns1:format_2330 . + +ns1:format_1431 a owl:Class ; rdfs:label "Phylogenetic property values format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2036 ; - oboInOwl:hasDefinition "Format of phylogenetic property data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2036 ; + ns2:hasDefinition "Format of phylogenetic property data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1432 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2037, - :format_2330 . - -:format_1433 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PHYLIP file format for phylogenetics character frequency data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2037, + ns1:format_2330 . + +ns1:format_1433 a owl:Class ; rdfs:label "Phylip discrete states format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of PHYLIP discrete states data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2038, - :format_2330 . - -:format_1434 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of PHYLIP discrete states data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2038, + ns1:format_2330 . + +ns1:format_1434 a owl:Class ; rdfs:label "Phylip cliques format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of PHYLIP cliques data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2039, - :format_2330 . - -:format_1435 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of PHYLIP cliques data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2039, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1436 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree data format used by the PHYLIP program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1437 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of an entry from the TreeBASE database of phylogenetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1445 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of an entry from the TreeFam database of phylogenetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2049, - :format_2330 . - -:format_1454 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2049, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2077, + ns1:format_2330 . -:format_1455 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2077, - :format_2330 . - -:format_1458 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2077, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1457, - :format_2330 . - -:format_1477 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1457, + ns1:format_2330 . + +ns1:format_1477 a owl:Class ; rdfs:label "mmCIF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Entry format of PDB database in mmCIF format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1475, - :format_2330 . - -:format_1478 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of PDB database in mmCIF format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1475, + ns1:format_2330 . + +ns1:format_1478 a owl:Class ; rdfs:label "PDBML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Entry format of PDB database in PDBML (XML) format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1475, - :format_2332 . - -:format_1500 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of PDB database in PDBML (XML) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1475, + ns1:format_2332 . + +ns1:format_1500 a owl:Class ; rdfs:label "Domainatrix 3D-1D scoring matrix format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_2064 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_2064 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1504 a owl:Class ; +ns1:format_1504 a owl:Class ; rdfs:label "aaindex" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Amino acid index format used by the AAindex database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2017, - :format_2330 . - -:format_1511 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Amino acid index format used by the AAindex database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2017, + ns1:format_2330 . + +ns1:format_1511 a owl:Class ; rdfs:label "IntEnz enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from IntEnz (The Integrated Relational Enzyme Database)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from IntEnz (The Integrated Relational Enzyme Database)." ; + ns2:inSubset ns4: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 ; +ns1:format_1512 a owl:Class ; rdfs:label "BRENDA enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the BRENDA enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the BRENDA enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1513 a owl:Class ; +ns1:format_1513 a owl:Class ; rdfs:label "KEGG REACTION enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the KEGG REACTION database of biochemical reactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the KEGG REACTION database of biochemical reactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1514 a owl:Class ; +ns1:format_1514 a owl:Class ; rdfs:label "KEGG ENZYME enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the KEGG ENZYME database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the KEGG ENZYME database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1515 a owl:Class ; +ns1:format_1515 a owl:Class ; rdfs:label "REBASE proto enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the proto section of the REBASE enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the proto section of the REBASE enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1516 a owl:Class ; +ns1:format_1516 a owl:Class ; rdfs:label "REBASE withrefm enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the withrefm section of the REBASE enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the withrefm section of the REBASE enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1551 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of output of the Pcons Model Quality Assessment Program (MQAP)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2065, + ns1:format_2330 . -:format_1552 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of output of the ProQ protein model quality predictor." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2065, + ns1:format_2330 . -:format_1563 a owl:Class ; +ns1:format_1563 a owl:Class ; rdfs:label "SMART domain assignment report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of SMART domain assignment data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of SMART domain assignment data." ; + ns2:inSubset ns4: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 ; +ns1:format_1568 a owl:Class ; rdfs:label "BIND entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the BIND database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the BIND database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1569 a owl:Class ; +ns1:format_1569 a owl:Class ; rdfs:label "IntAct entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the IntAct database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the IntAct database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1570 a owl:Class ; +ns1:format_1570 a owl:Class ; rdfs:label "InterPro entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences." ; + ns2:inSubset ns4: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 ; +ns1:format_1571 a owl:Class ; rdfs:label "InterPro entry abstract format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the textual abstract of signatures in an InterPro entry and its protein matches." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the textual abstract of signatures in an InterPro entry and its protein matches." ; + ns2:inSubset ns4: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 ; +ns1:format_1572 a owl:Class ; rdfs:label "Gene3D entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Gene3D protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Gene3D protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1573 a owl:Class ; +ns1:format_1573 a owl:Class ; rdfs:label "PIRSF entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the PIRSF protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the PIRSF protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1574 a owl:Class ; +ns1:format_1574 a owl:Class ; rdfs:label "PRINTS entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the PRINTS protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the PRINTS protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1575 a owl:Class ; +ns1:format_1575 a owl:Class ; rdfs:label "Panther Families and HMMs entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Panther library of protein families and subfamilies." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Panther library of protein families and subfamilies." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1576 a owl:Class ; +ns1:format_1576 a owl:Class ; rdfs:label "Pfam entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Pfam protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Pfam protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1577 a owl:Class ; +ns1:format_1577 a owl:Class ; rdfs:label "SMART entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the SMART protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the SMART protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1578 a owl:Class ; +ns1:format_1578 a owl:Class ; rdfs:label "Superfamily entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the Superfamily protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the Superfamily protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1579 a owl:Class ; +ns1:format_1579 a owl:Class ; rdfs:label "TIGRFam entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the TIGRFam protein secondary database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the TIGRFam protein secondary database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1580 a owl:Class ; +ns1:format_1580 a owl:Class ; rdfs:label "ProDom entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the ProDom protein domain classification database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the ProDom protein domain classification database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1581 a owl:Class ; +ns1:format_1581 a owl:Class ; rdfs:label "FSSP entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the FSSP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the FSSP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1582 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2027, - :format_2330 . - -:format_1603 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2027, + ns1:format_2330 . + +ns1:format_1603 a owl:Class ; rdfs:label "Ensembl gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of Ensembl genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of Ensembl genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1604 a owl:Class ; +ns1:format_1604 a owl:Class ; rdfs:label "DictyBase gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of DictyBase genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of DictyBase genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1605 a owl:Class ; +ns1:format_1605 a owl:Class ; rdfs:label "CGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of Candida Genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of Candida Genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1606 a owl:Class ; +ns1:format_1606 a owl:Class ; rdfs:label "DragonDB gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of DragonDB genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of DragonDB genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1607 a owl:Class ; +ns1:format_1607 a owl:Class ; rdfs:label "EcoCyc gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of EcoCyc genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of EcoCyc genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1608 a owl:Class ; +ns1:format_1608 a owl:Class ; rdfs:label "FlyBase gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of FlyBase genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of FlyBase genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1609 a owl:Class ; +ns1:format_1609 a owl:Class ; rdfs:label "Gramene gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of Gramene genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of Gramene genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1610 a owl:Class ; +ns1:format_1610 a owl:Class ; rdfs:label "KEGG GENES gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of KEGG GENES genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of KEGG GENES genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1611 a owl:Class ; +ns1:format_1611 a owl:Class ; rdfs:label "MaizeGDB gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Maize genetics and genomics database (MaizeGDB)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Maize genetics and genomics database (MaizeGDB)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1612 a owl:Class ; +ns1:format_1612 a owl:Class ; rdfs:label "MGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Mouse Genome Database (MGD)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Mouse Genome Database (MGD)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1613 a owl:Class ; +ns1:format_1613 a owl:Class ; rdfs:label "RGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Rat Genome Database (RGD)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Rat Genome Database (RGD)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1614 a owl:Class ; +ns1:format_1614 a owl:Class ; rdfs:label "SGD gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Saccharomyces Genome Database (SGD)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Saccharomyces Genome Database (SGD)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1615 a owl:Class ; +ns1:format_1615 a owl:Class ; rdfs:label "GeneDB gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Sanger GeneDB genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Sanger GeneDB genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1616 a owl:Class ; +ns1:format_1616 a owl:Class ; rdfs:label "TAIR gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of The Arabidopsis Information Resource (TAIR) genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of The Arabidopsis Information Resource (TAIR) genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1617 a owl:Class ; +ns1:format_1617 a owl:Class ; rdfs:label "WormBase gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the WormBase genomes database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the WormBase genomes database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1618 a owl:Class ; +ns1:format_1618 a owl:Class ; rdfs:label "ZFIN gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the Zebrafish Information Network (ZFIN) genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the Zebrafish Information Network (ZFIN) genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1619 a owl:Class ; +ns1:format_1619 a owl:Class ; rdfs:label "TIGR gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format of the TIGR genome database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format of the TIGR genome database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1620 a owl:Class ; +ns1:format_1620 a owl:Class ; rdfs:label "dbSNP polymorphism report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the dbSNP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the dbSNP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1623 a owl:Class ; +ns1:format_1623 a owl:Class ; rdfs:label "OMIM entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the OMIM database of genotypes and phenotypes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the OMIM database of genotypes and phenotypes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1624 a owl:Class ; +ns1:format_1624 a owl:Class ; rdfs:label "HGVbase entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a record from the HGVbase database of genotypes and phenotypes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a record from the HGVbase database of genotypes and phenotypes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1625 a owl:Class ; +ns1:format_1625 a owl:Class ; rdfs:label "HIVDB entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a record from the HIVDB database of genotypes and phenotypes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a record from the HIVDB database of genotypes and phenotypes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1626 a owl:Class ; +ns1:format_1626 a owl:Class ; rdfs:label "KEGG DISEASE entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the KEGG DISEASE database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the KEGG DISEASE database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1627 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2061, - :format_2330 . - -:format_1628 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2061, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_1629 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format of raw sequence read data from an Applied Biosystems sequencing machine." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1:format_1629 a owl:Class ; rdfs:label "mira" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of MIRA sequence trace information file." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2330 . - -:format_1630 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of MIRA sequence trace information file." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2330 . + +ns1:format_1630 a owl:Class ; rdfs:label "CAF" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_1631 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDefinition "Sequence assembly project file EXP format." ; + ns2:hasExactSynonym "Affymetrix EXP format", "EXP" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . -:format_1632 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_1633 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2330 . - -:format_1637 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "PHD sequence trace format to store serialised chromatogram data (reads)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1714 ], - :format_2058, - :format_2330 . - -:format_1638 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Affymetrix data file of raw image data." ; + ns2:hasExactSynonym "Affymetrix image data file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1714 ], + ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3110 ], - :format_2058, - :format_2330 . - -:format_1639 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Affymetrix data file of information about (raw) expression levels of the individual probes." ; + ns2:hasExactSynonym "Affymetrix probe raw data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3110 ], + ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2172, - :format_2330 . - -:format_1640 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2172, + ns1:format_2330 . + +ns1:format_1640 a owl:Class ; rdfs:label "ArrayExpress entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the ArrayExpress microarrays database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the ArrayExpress microarrays database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1641 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2056, - :format_2330 . - -:format_1644 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Affymetrix data file format for information about experimental conditions and protocols." ; + ns2:hasExactSynonym "Affymetrix experimental conditions data file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2056, + ns1:format_2330 . + +ns1:format_1644 a owl:Class ; rdfs:label "CHP" ; - :created_in "beta12orEarlier" ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3111 ], - :format_2058, - :format_2330 . - -:format_1645 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Affymetrix data file of information about (normalised) expression levels of the individual probes." ; + ns2:hasExactSynonym "Affymetrix probe normalised data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:format_2058, + ns1:format_2330 . + +ns1:format_1645 a owl:Class ; rdfs:label "EMDB entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the Electron Microscopy DataBase (EMDB)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the Electron Microscopy DataBase (EMDB)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1647 a owl:Class ; +ns1:format_1647 a owl:Class ; rdfs:label "KEGG PATHWAY entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1648 a owl:Class ; +ns1:format_1648 a owl:Class ; rdfs:label "MetaCyc entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the MetaCyc metabolic pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the MetaCyc metabolic pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1649 a owl:Class ; +ns1:format_1649 a owl:Class ; rdfs:label "HumanCyc entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of a report from the HumanCyc metabolic pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of a report from the HumanCyc metabolic pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1650 a owl:Class ; +ns1:format_1650 a owl:Class ; rdfs:label "INOH entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the INOH signal transduction pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the INOH signal transduction pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1651 a owl:Class ; +ns1:format_1651 a owl:Class ; rdfs:label "PATIKA entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the PATIKA biological pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the PATIKA biological pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1652 a owl:Class ; +ns1:format_1652 a owl:Class ; rdfs:label "Reactome entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the reactome biological pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the reactome biological pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1653 a owl:Class ; +ns1:format_1653 a owl:Class ; rdfs:label "aMAZE entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the aMAZE biological pathways and molecular interactions database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the aMAZE biological pathways and molecular interactions database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1654 a owl:Class ; +ns1:format_1654 a owl:Class ; rdfs:label "CPDB entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the CPDB database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the CPDB database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1655 a owl:Class ; +ns1:format_1655 a owl:Class ; rdfs:label "Panther Pathways entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the Panther Pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the Panther Pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1665 a owl:Class ; +ns1:format_1665 a owl:Class ; rdfs:label "Taverna workflow format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of Taverna workflows." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2332 . - -:format_1666 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of Taverna workflows." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2332 . + +ns1:format_1666 a owl:Class ; rdfs:label "BioModel mathematical model format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of mathematical models from the BioModel database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of mathematical models from the BioModel database." ; + ns2:inSubset ns4: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 ; +ns1:format_1697 a owl:Class ; rdfs:label "KEGG LIGAND entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG LIGAND chemical database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG LIGAND chemical database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1698 a owl:Class ; +ns1:format_1698 a owl:Class ; rdfs:label "KEGG COMPOUND entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG COMPOUND database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG COMPOUND database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1699 a owl:Class ; +ns1:format_1699 a owl:Class ; rdfs:label "KEGG PLANT entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG PLANT database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG PLANT database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1700 a owl:Class ; +ns1:format_1700 a owl:Class ; rdfs:label "KEGG GLYCAN entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG GLYCAN database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG GLYCAN database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1701 a owl:Class ; +ns1:format_1701 a owl:Class ; rdfs:label "PubChem entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from PubChem." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from PubChem." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1702 a owl:Class ; +ns1:format_1702 a owl:Class ; rdfs:label "ChemSpider entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from a database of chemical structures and property predictions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from a database of chemical structures and property predictions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1703 a owl:Class ; +ns1:format_1703 a owl:Class ; rdfs:label "ChEBI entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from Chemical Entities of Biological Interest (ChEBI)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from Chemical Entities of Biological Interest (ChEBI)." ; + ns2:inSubset ns4: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 ; +ns1:format_1704 a owl:Class ; rdfs:label "MSDchem ligand dictionary entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the MSDchem ligand dictionary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the MSDchem ligand dictionary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1705 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_1706 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of an entry from the HET group dictionary (HET groups from PDB files)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1:format_1706 a owl:Class ; rdfs:label "KEGG DRUG entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the KEGG DRUG database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the KEGG DRUG database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1734 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2848 . - -:format_1735 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of bibliographic reference as used by the PubMed database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for abstracts of scientific articles from the Medline database." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Bibliographic reference information including citation information is included" ; - rdfs:subClassOf :format_2330, - :format_2848 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . -:format_1736 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2848 . - -:format_1737 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "CiteXplore 'core' citation format including title, journal, authors and abstract." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2848 . - -:format_1739 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2848 . + +ns1:format_1739 a owl:Class ; rdfs:label "pmc" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Article format of the PubMed Central database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2020, - :format_2330 . - -:format_1740 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Article format of the PubMed Central database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2020, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The format of iHOP (Information Hyperlinked over Proteins) text-mining result." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2021, - :format_2331, - :format_2332 . + rdfs:subClassOf ns1:format_2021, + ns1:format_2331, + ns1:format_2332 . -:format_1741 a owl:Class ; +ns1:format_1741 a owl:Class ; rdfs:label "OSCAR format" ; - :citation ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "OSCAR format of annotated chemical text." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "OSCAR format of annotated chemical text." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2332, + ns1:format_3780 . -:format_1747 a owl:Class ; +ns1:format_1747 a owl:Class ; rdfs:label "PDB atom record format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :format_1476 ; - oboInOwl:hasDefinition "Format of an ATOM record (describing data for an individual atom) from a PDB file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:format_1476 ; + ns2:hasDefinition "Format of an ATOM record (describing data for an individual atom) from a PDB file." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1760 a owl:Class ; +ns1:format_1760 a owl:Class ; rdfs:label "CATH chain report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of CATH domain classification information for a polypeptide chain." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of CATH domain classification information for a polypeptide chain." ; + ns2:inSubset ns4: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 ; +ns1:format_1761 a owl:Class ; rdfs:label "CATH PDB report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of CATH domain classification information for a protein PDB file." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of CATH domain classification information for a protein PDB file." ; + ns2:inSubset ns4: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 ; +ns1:format_1782 a owl:Class ; rdfs:label "NCBI gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry (gene) format of the NCBI database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry (gene) format of the NCBI database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1808 a owl:Class ; +ns1:format_1808 a owl:Class ; rdfs:label "GeneIlluminator gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDbXref "Moby:GI_Gene" ; + ns2:hasDefinition "Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service." ; + ns2:inSubset ns4: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 ; +ns1:format_1809 a owl:Class ; rdfs:label "BacMap gene card format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDbXref "Moby:BacMapGeneCard" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1810 a owl:Class ; +ns1:format_1810 a owl:Class ; rdfs:label "ColiCard report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1861 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2060, - :format_2330 . - -:format_1910 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Map of a plasmid (circular DNA) in PlasMapper TextMap format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2060, + ns1:format_2330 . + +ns1:format_1910 a owl:Class ; rdfs:label "newick" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Phylogenetic tree Newick (text) format." ; - oboInOwl:hasExactSynonym "nh" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1911 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree Newick (text) format." ; + ns2:hasExactSynonym "nh" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1:format_1911 a owl:Class ; rdfs:label "TreeCon format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Phylogenetic tree TreeCon (text) format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1912 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree TreeCon (text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1:format_1912 a owl:Class ; rdfs:label "Nexus format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Phylogenetic tree Nexus (text) format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2556 . - -:format_1918 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree Nexus (text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2556 . + +ns1:format_1918 a owl:Class ; rdfs:label "Atomic data format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :format_1475 ; - oboInOwl:hasDefinition "Data format for an individual atom." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:format_1475 ; + ns2:hasDefinition "Data format for an individual atom." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1923 a owl:Class ; +ns1:format_1923 a owl:Class ; rdfs:label "acedb" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "ACEDB sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1924 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "ACEDB sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1924 a owl:Class ; rdfs:label "clustal sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1982 ; - oboInOwl:hasDefinition "Clustalw output format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1982 ; + ns2:hasDefinition "Clustalw output format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1925 a owl:Class ; +ns1:format_1925 a owl:Class ; rdfs:label "codata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Codata entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1926 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Codata entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1926 a owl:Class ; rdfs:label "dbid" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Fasta format variant with database name before ID." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fasta format variant with database name before ID." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200 . -:format_1928 a owl:Class ; +ns1:format_1928 a owl:Class ; rdfs:label "Staden experiment format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Staden experiment file format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1929 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Staden experiment file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1929 a owl:Class ; rdfs:label "FASTA" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTA format including NCBI-style IDs." ; - oboInOwl:hasExactSynonym "FASTA format", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA format including NCBI-style IDs." ; + ns2:hasExactSynonym "FASTA format", "FASTA sequence format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . -:format_1930 a owl:Class ; +ns1:format_1930 a owl:Class ; rdfs:label "FASTQ" ; - :created_in "beta12orEarlier" ; - :file_extension "fastq", + ns1:created_in "beta12orEarlier" ; + ns1:file_extension "fastq", "fq" ; - oboInOwl:hasDefinition "FASTQ short read format ignoring quality scores." ; - oboInOwl:hasExactSynonym "FASTAQ", + ns2:hasDefinition "FASTQ short read format ignoring quality scores." ; + ns2:hasExactSynonym "FASTAQ", "fq" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1932 a owl:Class ; +ns1:format_1932 a owl:Class ; rdfs:label "FASTQ-sanger" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTQ short read format with phred quality." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTQ short read format with phred quality." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1934 a owl:Class ; +ns1:format_1934 a owl:Class ; rdfs:label "fitch program" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Fitch program format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1935 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fitch program format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1935 a owl:Class ; rdfs:label "GCG" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GCG sequence file format." ; - oboInOwl:hasExactSynonym "GCG SSF" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GCG sequence file format." ; + ns2:hasExactSynonym "GCG SSF" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "GCG SSF (single sequence file) file format." ; - rdfs:subClassOf :format_2330, - :format_3486 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3486 . -:format_1937 a owl:Class ; +ns1:format_1937 a owl:Class ; rdfs:label "genpept" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Genpept protein entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Genpept protein entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Currently identical to refseqp format" ; - rdfs:subClassOf :format_2205 . + rdfs:subClassOf ns1:format_2205 . -:format_1938 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1974, - :format_2551 . - -:format_1939 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GFF feature file format with sequence in the header." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1974, + ns1:format_2551 . + +ns1:format_1939 a owl:Class ; rdfs:label "GFF3-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GFF3 feature file format with sequence." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1975, - :format_2551 . - -:format_1940 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GFF3 feature file format with sequence." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1975, + ns1:format_2551 . + +ns1:format_1940 a owl:Class ; rdfs:label "giFASTA format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTA sequence format including NCBI-style GIs." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA sequence format including NCBI-style GIs." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200 . -:format_1941 a owl:Class ; +ns1:format_1941 a owl:Class ; rdfs:label "hennig86" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Hennig86 output sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1942 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Hennig86 output sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1942 a owl:Class ; rdfs:label "ig" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Intelligenetics sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1943 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Intelligenetics sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1943 a owl:Class ; rdfs:label "igstrict" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Intelligenetics sequence format (strict version)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1944 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Intelligenetics sequence format (strict version)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1944 a owl:Class ; rdfs:label "jackknifer" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Jackknifer interleaved and non-interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1945 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Jackknifer interleaved and non-interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1945 a owl:Class ; rdfs:label "mase format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mase program sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1946 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mase program sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1946 a owl:Class ; rdfs:label "mega-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mega interleaved and non-interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1950 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mega interleaved and non-interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1950 a owl:Class ; rdfs:label "pdbatom" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB sequence format (ATOM lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB sequence format (ATOM lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdb format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1951 a owl:Class ; +ns1:format_1951 a owl:Class ; rdfs:label "pdbatomnuc" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB nucleotide sequence format (ATOM lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB nucleotide sequence format (ATOM lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdbnuc format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1952 a owl:Class ; +ns1:format_1952 a owl:Class ; rdfs:label "pdbseqresnuc" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB nucleotide sequence format (SEQRES lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB nucleotide sequence format (SEQRES lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdbnucseq format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1953 a owl:Class ; +ns1:format_1953 a owl:Class ; rdfs:label "pdbseqres" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "PDB sequence format (SEQRES lines)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "PDB sequence format (SEQRES lines)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "pdbseq format in EMBOSS." ; - rdfs:subClassOf :format_1475, - :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_1475, + ns1:format_2330, + ns1:format_2551 . -:format_1954 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Plain old FASTA sequence format (unspecified format for IDs)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200 . -:format_1955 a owl:Class ; +ns1:format_1955 a owl:Class ; rdfs:label "phylip sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1997 ; - oboInOwl:hasDefinition "Phylip interleaved sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1997 ; + ns2:hasDefinition "Phylip interleaved sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1956 a owl:Class ; +ns1:format_1956 a owl:Class ; rdfs:label "phylipnon sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1998 ; - oboInOwl:hasDefinition "PHYLIP non-interleaved sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1998 ; + ns2:hasDefinition "PHYLIP non-interleaved sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1957 a owl:Class ; +ns1:format_1957 a owl:Class ; rdfs:label "raw" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Raw sequence format with no non-sequence characters." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_1958 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw sequence format with no non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1:format_1958 a owl:Class ; rdfs:label "refseqp" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Refseq protein entry sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Refseq protein entry sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Currently identical to genpept format" ; - rdfs:subClassOf :format_2330, - :format_2551 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . -:format_1959 a owl:Class ; +ns1:format_1959 a owl:Class ; rdfs:label "selex sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2000 ; - oboInOwl:hasDefinition "Selex sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2000 ; + ns2:hasDefinition "Selex sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1960 a owl:Class ; +ns1:format_1960 a owl:Class ; rdfs:label "Staden format" ; - :created_in "beta12orEarlier" ; - :documentation , + ns1:created_in "beta12orEarlier" ; + ns1:documentation , ; - oboInOwl:hasDbXref , + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Staden suite sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . + ns2:hasDefinition "Staden suite sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . -:format_1961 a owl:Class ; +ns1:format_1961 a owl:Class ; rdfs:label "Stockholm format" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Stockholm multiple sequence alignment format (used by Pfam and Rfam)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1962 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Stockholm multiple sequence alignment format (used by Pfam and Rfam)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1962 a owl:Class ; rdfs:label "strider format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DNA strider output sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1964 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA strider output sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1964 a owl:Class ; rdfs:label "plain text format (unformatted)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Plain text sequence format (essentially unformatted)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Plain text sequence format (essentially unformatted)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_1965 a owl:Class ; +ns1:format_1965 a owl:Class ; rdfs:label "treecon sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2005 ; - oboInOwl:hasDefinition "Treecon output sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2005 ; + ns2:hasDefinition "Treecon output sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1966 a owl:Class ; +ns1:format_1966 a owl:Class ; rdfs:label "ASN.1 sequence format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "NCBI ASN.1-based sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1967 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "NCBI ASN.1-based sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_1968 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DAS sequence (XML) format (any type)." ; + ns2:hasExactSynonym "das sequence format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1:format_1968 a owl:Class ; rdfs:label "dasdna" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DAS sequence (XML) format (nucleotide-only)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DAS sequence (XML) format (nucleotide-only)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The use of this format is deprecated." ; - rdfs:subClassOf :format_2332, - :format_2552 . + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . -:format_1969 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1970 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS debugging trace sequence format of full internal data content." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1970 a owl:Class ; rdfs:label "jackknifernon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Jackknifer output sequence non-interleaved format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_1971 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Jackknifer output sequence non-interleaved format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1:format_1971 a owl:Class ; rdfs:label "meganon sequence format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1992 ; - oboInOwl:hasDefinition "Mega non-interleaved output sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1992 ; + ns2:hasDefinition "Mega non-interleaved output sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1972 a owl:Class ; +ns1:format_1972 a owl:Class ; rdfs:label "NCBI format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "NCBI FASTA sequence format with NCBI-style IDs." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "NCBI FASTA sequence format with NCBI-style IDs." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "There are several variants of this." ; - rdfs:subClassOf :format_2200 . + rdfs:subClassOf ns1:format_2200 . -:format_1976 a owl:Class ; +ns1:format_1976 a owl:Class ; rdfs:label "pir" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "PIR feature format." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_1948 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "PIR feature format." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1948 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1977 a owl:Class ; +ns1:format_1977 a owl:Class ; rdfs:label "swiss feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1963 ; - oboInOwl:hasDefinition "Swiss-Prot feature format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1963 ; + ns2:hasDefinition "Swiss-Prot feature format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1979 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2330 . - -:format_1980 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS debugging trace feature format of full internal data content." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . + +ns1:format_1980 a owl:Class ; rdfs:label "EMBL feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1927 ; - oboInOwl:hasDefinition "EMBL feature format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1927 ; + ns2:hasDefinition "EMBL feature format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1981 a owl:Class ; +ns1:format_1981 a owl:Class ; rdfs:label "GenBank feature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1936 ; - oboInOwl:hasDefinition "Genbank feature format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1936 ; + ns2:hasDefinition "Genbank feature format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1983 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1984 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS alignment format for debugging trace of full internal data content." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1984 a owl:Class ; rdfs:label "FASTA-aln" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Fasta format for (aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . - -:format_1985 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fasta format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . + +ns1:format_1985 a owl:Class ; rdfs:label "markx0" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX0 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX0 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1986 a owl:Class ; +ns1:format_1986 a owl:Class ; rdfs:label "markx1" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX1 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX1 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1987 a owl:Class ; +ns1:format_1987 a owl:Class ; rdfs:label "markx10" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX10 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX10 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1988 a owl:Class ; +ns1:format_1988 a owl:Class ; rdfs:label "markx2" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX2 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX2 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1989 a owl:Class ; +ns1:format_1989 a owl:Class ; rdfs:label "markx3" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Pearson MARKX3 alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2922 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Pearson MARKX3 alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2922 . -:format_1990 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1991 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment format for start and end of matches between sequence pairs." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1991 a owl:Class ; rdfs:label "mega" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mega format for (typically aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2923 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mega format for (typically aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2923 . -:format_1993 a owl:Class ; +ns1:format_1993 a owl:Class ; rdfs:label "msf alignment format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1947 ; - oboInOwl:hasDefinition "MSF format for (aligned) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1947 ; + ns2:hasDefinition "MSF format for (aligned) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1994 a owl:Class ; +ns1:format_1994 a owl:Class ; rdfs:label "nexus alignment format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1949 ; - oboInOwl:hasDefinition "Nexus/paup format for (aligned) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1949 ; + ns2:hasDefinition "Nexus/paup format for (aligned) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1995 a owl:Class ; +ns1:format_1995 a owl:Class ; rdfs:label "nexusnon alignment format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_1973 ; - oboInOwl:hasDefinition "Nexus/paup non-interleaved format for (aligned) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_1973 ; + ns2:hasDefinition "Nexus/paup non-interleaved format for (aligned) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_1996 a owl:Class ; +ns1:format_1996 a owl:Class ; rdfs:label "pair" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBOSS simple sequence pair alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2554 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS simple sequence pair alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2554 . -:format_1999 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2001 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment format for score values for pairs of sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2001 a owl:Class ; rdfs:label "EMBOSS simple format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBOSS simple multiple alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2002 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBOSS simple multiple alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2002 a owl:Class ; rdfs:label "srs format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Simple multiple sequence (alignment) format for SRS." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2003 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Simple multiple sequence (alignment) format for SRS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2003 a owl:Class ; rdfs:label "srspair" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Simple sequence pair (alignment) format for SRS." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_2004 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Simple sequence pair (alignment) format for SRS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1:format_2004 a owl:Class ; rdfs:label "T-Coffee format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "T-Coffee program alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_2015 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "T-Coffee program alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_2015 a owl:Class ; rdfs:label "Sequence-profile alignment (HMM) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2014 ; - oboInOwl:hasDefinition "Data format for a sequence-HMM profile alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2014 ; + ns2:hasDefinition "Data format for a sequence-HMM profile alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2034 a owl:Class ; +ns1:format_2034 a owl:Class ; rdfs:label "Biological model format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.2" ; - oboInOwl:consider :format_2013 ; - oboInOwl:hasDefinition "Data format for a biological model." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:format_2013 ; + ns2:hasDefinition "Data format for a biological model." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2040 a owl:Class ; +ns1:format_2040 a owl:Class ; rdfs:label "Phylogenetic tree report (invariants) format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of phylogenetic invariants data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic invariants data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1429 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1429 ], + ns1:format_2036 . -:format_2045 a owl:Class ; +ns1:format_2045 a owl:Class ; rdfs:label "Electron microscopy model format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Annotation format for electron microscopy models." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Annotation format for electron microscopy models." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2051 a owl:Class ; +ns1:format_2051 a owl:Class ; rdfs:label "Polymorphism report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :format_2921 ; - oboInOwl:hasDefinition "Format for sequence polymorphism data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:format_2921 ; + ns2:hasDefinition "Format for sequence polymorphism data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2052 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for reports on a protein family." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0907 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0907 ], + ns1:format_2350 . -:format_2059 a owl:Class ; +ns1:format_2059 a owl:Class ; rdfs:label "Genotype and phenotype annotation format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Format of a report on genotype / phenotype information." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Format of a report on genotype / phenotype information." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2063 a owl:Class ; +ns1:format_2063 a owl:Class ; rdfs:label "Protein report (enzyme) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Format of a report of general information about a specific enzyme." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Format of a report of general information about a specific enzyme." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2159 a owl:Class ; +ns1:format_2159 a owl:Class ; rdfs:label "Gene features (coding region) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.10" ; - oboInOwl:hasDefinition "Format used for report on coding regions in nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_2031 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.10" ; + ns2:hasDefinition "Format used for report on coding regions in nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_2031 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2171 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2170 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used for clusters of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2170 . -:format_2175 a owl:Class ; +ns1:format_2175 a owl:Class ; rdfs:label "Gene cluster format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :format_2172 ; - oboInOwl:hasDefinition "Format used for clusters of genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:format_2172 ; + ns2:hasDefinition "Format used for clusters of genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2183 a owl:Class ; +ns1:format_2183 a owl:Class ; rdfs:label "EMBLXML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2204 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2204 . -:format_2184 a owl:Class ; +ns1:format_2184 a owl:Class ; rdfs:label "cdsxml" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2204 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2204 . -:format_2185 a owl:Class ; +ns1:format_2185 a owl:Class ; rdfs:label "insdxml" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2204 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2204 . -:format_2186 a owl:Class ; +ns1:format_2186 a owl:Class ; rdfs:label "geneseq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Geneseq sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2181 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Geneseq sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2181 . -:format_2188 a owl:Class ; +ns1:format_2188 a owl:Class ; rdfs:label "UniProt format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "UniProt entry sequence format." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_1963 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "UniProt entry sequence format." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1963 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2189 a owl:Class ; +ns1:format_2189 a owl:Class ; rdfs:label "ipi" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :format_1963 ; - oboInOwl:hasDefinition "ipi sequence format." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:format_1963 ; + ns2:hasDefinition "ipi sequence format." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2194 a owl:Class ; +ns1:format_2194 a owl:Class ; rdfs:label "medline" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Abstract format used by MedLine database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2020, - :format_2330 . - -:format_2202 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Abstract format used by MedLine database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2020, + ns1:format_2330 . + +ns1:format_2202 a owl:Class ; rdfs:label "Sequence record full format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_1919 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1919 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2203 a owl:Class ; +ns1:format_2203 a owl:Class ; rdfs:label "Sequence record lite format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :format_1919 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_1919 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2210 a owl:Class ; +ns1:format_2210 a owl:Class ; rdfs:label "Strain data format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :format_1915 ; - oboInOwl:hasDefinition "Format of a report on organism strain data / cell line." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:format_1915 ; + ns2:hasDefinition "Format of a report on organism strain data / cell line." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2211 a owl:Class ; +ns1:format_2211 a owl:Class ; rdfs:label "CIP strain data format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format for a report of strain data as used for CIP database entries." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format for a report of strain data as used for CIP database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2243 a owl:Class ; +ns1:format_2243 a owl:Class ; rdfs:label "phylip property values" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2036 ; - oboInOwl:hasDefinition "PHYLIP file format for phylogenetic property data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2036 ; + ns2:hasDefinition "PHYLIP file format for phylogenetic property data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2303 a owl:Class ; +ns1:format_2303 a owl:Class ; rdfs:label "STRING entry format (HTML)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format (HTML) for the STRING database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format (HTML) for the STRING database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2304 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2054, - :format_2332 . - -:format_2306 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format (XML) for the STRING database of protein interaction." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2054, + ns1:format_2332 . + +ns1:format_2306 a owl:Class ; rdfs:label "GTF" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref , + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Gene Transfer Format (GTF), a restricted version of GFF." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2305 . + ns2:hasDefinition "Gene Transfer Format (GTF), a restricted version of GFF." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2305 . -:format_2310 a owl:Class ; +ns1:format_2310 a owl:Class ; rdfs:label "FASTA-HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTA format wrapped in HTML elements." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331, - :format_2546 . - -:format_2311 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTA format wrapped in HTML elements." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331, + ns1:format_2546 . + +ns1:format_2311 a owl:Class ; rdfs:label "EMBL-HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBL entry format wrapped in HTML elements." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331, - :format_2543 . - -:format_2322 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBL entry format wrapped in HTML elements." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331, + ns1:format_2543 . + +ns1:format_2322 a owl:Class ; rdfs:label "BioCyc enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the BioCyc enzyme database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the BioCyc enzyme database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2323 a owl:Class ; +ns1:format_2323 a owl:Class ; rdfs:label "ENZYME enzyme report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of an entry from the Enzyme nomenclature database (ENZYME)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of an entry from the Enzyme nomenclature database (ENZYME)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2328 a owl:Class ; +ns1:format_2328 a owl:Class ; rdfs:label "PseudoCAP gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a report on a gene from the PseudoCAP database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a report on a gene from the PseudoCAP database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2329 a owl:Class ; +ns1:format_2329 a owl:Class ; rdfs:label "GeneCards gene report format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Format of a report on a gene from the GeneCards database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Format of a report on a gene from the GeneCards database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2334 a owl:Class ; +ns1:format_2334 a owl:Class ; rdfs:label "URI format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_1047 ; - oboInOwl:hasDefinition "Typical textual representation of a URI." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_1047 ; + ns2:hasDefinition "Typical textual representation of a URI." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2341 a owl:Class ; +ns1:format_2341 a owl:Class ; rdfs:label "NCI-Nature pathway entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "The format of an entry from the NCI-Nature pathways database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "The format of an entry from the NCI-Nature pathways database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2352 a owl:Class ; +ns1:format_2352 a owl:Class ; rdfs:label "BioXSD (XML)" ; - :citation , + ns1:citation , , ; - :created_in "beta12orEarlier" ; - :documentation , + ns1:created_in "beta12orEarlier" ; + ns1:documentation , ; - :example , + ns1:example , , , ; - :ontology_used "Any ontology allowed, none mandatory. Preferrably 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: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'." ; - oboInOwl:hasBroadSynonym "BioXSD", + ns1:ontology_used "Any ontology allowed, none mandatory. Preferrably 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." ; + ns1:repository ; + ns2: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'." ; + ns2:hasBroadSynonym "BioXSD", "BioXSD data model", "BioXSD format", "BioXSD/GTrack", "BioXSD|BioJSON|BioYAML", "BioXSD|GTrack" ; - oboInOwl:hasDbXref , + ns2: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 "BioXSD XML", + ns2: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." ; + ns2:hasExactSynonym "BioXSD XML", "BioXSD XML format", "BioXSD in XML", "BioXSD in XML format", "BioXSD+XML" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1772 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3108 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1772 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_1919, - :format_1920, - :format_2332, - :format_2555, - :format_2571 . - -:format_2532 a owl:Class ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3108 ], + ns1:format_1919, + ns1:format_1920, + ns1:format_2332, + ns1:format_2555, + ns1:format_2571 . + +ns1:format_2532 a owl:Class ; rdfs:label "GenBank-HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Genbank entry format wrapped in HTML elements." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331, - :format_2559 . - -:format_2542 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Genbank entry format wrapped in HTML elements." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331, + ns1:format_2559 . + +ns1:format_2542 a owl:Class ; rdfs:label "Protein features (domains) format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2350 ; - oboInOwl:hasDefinition "Format of a report on protein features (domain composition)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2350 ; + ns2:hasDefinition "Format of a report on protein features (domain composition)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2549 a owl:Class ; +ns1:format_2549 a owl:Class ; rdfs:label "OBO" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "OBO ontology text format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2196, - :format_2330 . - -:format_2550 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "OBO ontology text format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2196, + ns1:format_2330 . + +ns1:format_2550 a owl:Class ; rdfs:label "OBO-XML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "OBO ontology XML format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2196, - :format_2332 . - -:format_2560 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "OBO ontology XML format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2196, + ns1:format_2332 . + +ns1:format_2560 a owl:Class ; rdfs:label "STRING entry format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :format_2331 ; - oboInOwl:hasDefinition "Entry format for the STRING database of protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:format_2331 ; + ns2:hasDefinition "Entry format for the STRING database of protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2562 a owl:Class ; +ns1:format_2562 a owl:Class ; rdfs:label "Amino acid identifier format" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :data_0994 ; - oboInOwl:hasDefinition "Text format (representation) of amino acid residues." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:data_0994 ; + ns2:hasDefinition "Text format (representation) of amino acid residues." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_2568 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1207, - :format_2567 . - -:format_2569 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1207, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1212, - :format_2567 . - -:format_2570 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1212, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1213, - :format_2567 . - -:format_2572 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1213, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333, - :format_2920 . - -:format_2573 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2057, + ns1:format_2330, + ns1:format_2920 . -:format_2585 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_2607 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1208, - :format_2567 . - -:format_3000 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1208, + ns1:format_2567 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF)." ; - rdfs:subClassOf :format_2057, - :format_2333 . + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . -:format_3001 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2055, - :format_2330 . - -:format_3004 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2055, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2919 . - -:format_3005 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "bigBed format for large sequence annotation tracks, similar to textual BED format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2919 . + +ns1:format_3005 a owl:Class ; rdfs:label "WIG" ; - :created_in "beta12orEarlier" ; - :documentation ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3006 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2919 . - -:format_3007 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919, - :format_2920 . - -:format_3008 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2554, + ns1:format_2919 . -:format_3009 a owl:Class ; +ns1:format_3009 a owl:Class ; rdfs:label "2bit" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref , + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2571 . + ns2:hasDefinition "2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2571 . -:format_3010 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2571 . - -:format_3011 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition ".nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2571 . + +ns1:format_3011 a owl:Class ; rdfs:label "genePred" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "genePred table format for gene prediction tracks." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "genePred table format for gene prediction tracks." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3012 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3013 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_3014 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "axt format of alignments, typically produced from BLASTZ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1:format_3014 a owl:Class ; rdfs:label "LAV" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "LAV format of alignments generated by BLASTZ and LASTZ." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_3015 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "LAV format of alignments generated by BLASTZ and LASTZ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2920 . - -:format_3016 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . + +ns1:format_3016 a owl:Class ; rdfs:label "VCF" ; - :created_in "beta12orEarlier" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2921 . - -:format_3017 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2921 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_3018 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_3019 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "ZTR format for storing chromatogram data from DNA sequencing instruments." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1975, - :format_2921 . - -:format_3020 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1975, + ns1:format_2921 . + +ns1:format_3020 a owl:Class ; rdfs:label "BCF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "BCF, the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2921 . - -:format_3098 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref ; + ns2:hasDefinition "BCF, the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2921 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Format of raw SCOP domain classification data files." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "These are the parsable data files provided by SCOP." ; - rdfs:subClassOf :format_3097 . + rdfs:subClassOf ns1:format_3097 . -:format_3099 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Format of raw CATH domain classification data files." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "These are the parsable data files provided by CATH." ; - rdfs:subClassOf :format_3097 . + rdfs:subClassOf ns1:format_3097 . -:format_3100 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Format of summary of domain classification information for a CATH domain." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3097 . -:format_3155 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3166 . - -:format_3156 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3166 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013 . - -:format_3157 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "BioPAX is an exchange format for pathway data, with its data model defined in OWL." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2332, - :format_2920 . - -:format_3159 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "EBI Application Result XML is a format returned by sequence similarity search Web services at EBI." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2332, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2557 . - -:format_3160 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2557 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2557 . - -:format_3161 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "NeXML is a standardised XML format for rich phyloinformatic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2557 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3111 ], - :format_2058, - :format_2332 . - -:format_3162 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:format_2058, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3111 ], - :format_2058, - :format_3475 . - -:format_3163 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:format_2058, + ns1:format_3475 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3164 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1:format_3164 a owl:Class ; rdfs:label "GTrack" ; - :citation ; - :created_in "1.0" ; - :documentation , + ns1:citation ; + ns1:created_in "1.0" ; + ns1:documentation , , ; - :example , + ns1:example , ; - :repository ; - oboInOwl: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." ; - oboInOwl:hasBroadSynonym "GTrack ecosystem of formats" ; - oboInOwl:hasDbXref , + ns1:repository ; + ns2: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." ; + ns2:hasBroadSynonym "GTrack ecosystem of formats" ; + ns2: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", + ns2: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\")." ; + ns2:hasExactSynonym "BioXSD/GTrack GTrack", "BioXSD|GTrack GTrack", "GTrack format", "GTrack|BTrack|GSuite GTrack", "GTrack|GSuite|BTrack GTrack" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2206, - :format_2330, - :format_2919 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2206, + ns1:format_2330, + ns1:format_2919 . -:format_3235 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Cytoband format for chromosome cytobands." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3236 ], + ns1:format_2078, + ns1:format_2330 . -:format_3239 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332, - :format_3166 . - -:format_3240 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "CopasiML, the native format of COPASI." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332, + ns1:format_3166 . + +ns1:format_3240 a owl:Class ; rdfs:label "CellML" ; - :created_in "1.2" ; - :documentation ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.2" ; + ns1:documentation ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "CellML, the format for mathematical models of biological and other networks." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . + ns2:hasDefinition "CellML, the format for mathematical models of biological and other networks." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . -:format_3242 a owl:Class ; +ns1:format_3242 a owl:Class ; rdfs:label "PSI MI TAB (MITAB)" ; - :created_in "1.2" ; - :documentation , + ns1:created_in "1.2" ; + ns1:documentation , , , ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2054, - :format_2330 . - -:format_3243 a owl:Class ; + ns2:hasDbXref ; + ns2:hasDefinition "Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2054, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3158 . - -:format_3244 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3158 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "mzML format for raw spectrometer output data, standardised by HUPO PSI MSS." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3246 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3247 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3248 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3249 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3250 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3252 a owl:Class ; + ns1:created_in "1.2" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2197, - :format_2330 . - -:format_3253 a owl:Class ; + ns1:created_in "1.2" ; + ns2:hasDefinition "A human-readable encoding for the Web Ontology Language (OWL)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2197, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns2:hasDefinition "A syntax for writing OWL class expressions." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This format was influenced by the OWL Abstract Syntax and the DL style syntax." ; - rdfs:subClassOf :format_2197, - :format_2330 . + rdfs:subClassOf ns1:format_2197, + ns1:format_2330 . -:format_3254 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns2:hasDefinition "A superset of the \"Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort\"." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This format is used in Protege 4." ; - rdfs:subClassOf :format_2195, - :format_2330 . + rdfs:subClassOf ns1:format_2195, + ns1:format_2330 . -:format_3255 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns2:hasDefinition "The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The SPARQL Query Language incorporates a very similar syntax." ; - rdfs:subClassOf :format_2330, - :format_2376 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . -:format_3256 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:file_extension "nt" ; + ns2:hasDefinition "A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "N-Triples should not be confused with Notation 3 which is a superset of Turtle." ; - rdfs:subClassOf :format_2330, - :format_2376 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . -:format_3257 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2376 . - -:format_3261 a owl:Class ; + ns1:created_in "1.2" ; + ns1:file_extension "n3" ; + ns2:hasDefinition "A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind." ; + ns2:hasExactSynonym "N3" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . + +ns1:format_3261 a owl:Class ; rdfs:label "RDF/XML" ; - :created_in "1.2" ; - :file_extension "rdf" ; - oboInOwl:hasDefinition "Resource Description Framework (RDF) XML format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:file_extension "rdf" ; + ns2:hasDefinition "Resource Description Framework (RDF) XML format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "RDF/XML is a 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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_2376 . -:format_3262 a owl:Class ; +ns1:format_3262 a owl:Class ; rdfs:label "OWL/XML" ; - :created_in "1.2" ; - oboInOwl:hasDefinition "OWL ontology XML serialisation format." ; - oboInOwl:hasNarrowSynonym "OWL" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2197, - :format_2332 . - -:format_3281 a owl:Class ; + ns1:created_in "1.2" ; + ns2:hasDefinition "OWL ontology XML serialisation format." ; + ns2:hasNarrowSynonym "OWL" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2197, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . - -:format_3284 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333 . - -:format_3285 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "Standard flowgram format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3288 . - -:format_3286 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "The MAP file describes SNPs and is used by the Plink package." ; + ns2:hasExactSynonym "Plink MAP" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3288 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3288 . - -:format_3309 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "The PED file describes individuals and genetic data and is used by the Plink package." ; + ns2:hasExactSynonym "Plink PED" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3288 . + +ns1:format_3309 a owl:Class ; rdfs:label "CT" ; - :created_in "1.3" ; - :documentation , + ns1:created_in "1.3" ; + ns1:documentation , ; - oboInOwl:hasDefinition "File format of a CT (Connectivity Table) file from the RNAstructure package." ; - oboInOwl:hasExactSynonym "Connect format", + ns2:hasDefinition "File format of a CT (Connectivity Table) file from the RNAstructure package." ; + ns2:hasExactSynonym "Connect format", "Connectivity Table file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2076, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2076, + ns1:format_2330 . -:format_3310 a owl:Class ; +ns1:format_3310 a owl:Class ; rdfs:label "SS" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "XRNA old input style format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2076, - :format_2330 . - -:format_3311 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "XRNA old input style format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2076, + ns1:format_2330 . + +ns1:format_3311 a owl:Class ; rdfs:label "RNAML" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "RNA Markup Language." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921, - :format_2076, - :format_2332 . - -:format_3312 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "RNA Markup Language." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921, + ns1:format_2076, + ns1:format_2332 . + +ns1:format_3312 a owl:Class ; rdfs:label "GDE" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "Format for the Genetic Data Environment (GDE)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_3313 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "Format for the Genetic Data Environment (GDE)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1: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) pacakge." ; - oboInOwl:hasExactSynonym "Block file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2554 . - -:format_3327 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) pacakge." ; + ns2:hasExactSynonym "Block file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2554 . + +ns1:format_3327 a owl:Class ; rdfs:label "BAI" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "BAM indexing format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0955 ], - :format_2333, - :format_3326 . - -:format_3328 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "BAM indexing format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0955 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1370 . - -:format_3329 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "HMMER profile HMM file for HMMER versions 2.x" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1370 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1370 . - -:format_3330 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "HMMER profile HMM file for HMMER versions 3.x" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1370 . + +ns1:format_3330 a owl:Class ; rdfs:label "PO" ; - :created_in "1.3" ; - :documentation ; - oboInOwl:hasDefinition "EMBOSS simple sequence pair alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2554 . - -:format_3331 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "EMBOSS simple sequence pair alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1333, - :format_2332 . - -:format_3462 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "XML format as produced by the NCBI Blast package" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1333, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2920 . - -:format_3466 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" ; + ns2:hasDbXref "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" ; + ns2:hasDefinition "Reference-based compression of alignment format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2920 . + +ns1:format_3466 a owl:Class ; rdfs:label "EPS" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Encapsulated PostScript format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3696 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Encapsulated PostScript format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3696 . -:format_3467 a owl:Class ; +ns1:format_3467 a owl:Class ; rdfs:label "GIF" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Graphics Interchange Format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Graphics Interchange Format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . -:format_3468 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3507 . - -:format_3476 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Microsoft Excel spreadsheet format." ; + ns2:hasExactSynonym "Microsoft Excel format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3507 . + +ns1:format_3476 a owl:Class ; rdfs:label "Gene expression data format" ; - :created_in "1.7" ; - :obsolete_since "1.10" ; - oboInOwl:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :format_2058 ; + ns1:created_in "1.7" ; + ns1:obsolete_since "1.10" ; + ns2:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:format_2058 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_3477 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2058, - :format_2330 . - -:format_3484 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3210 ], - :format_2333, - :format_3326 . - -:format_3485 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" ; + ns2:hasDefinition "Bowtie format for indexed reference genome for \"small\" genomes." ; + ns2:hasExactSynonym "Bowtie index format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3210 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.7" ; + ns1:documentation "http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf" ; + ns2:hasDefinition "Rich sequence format." ; + ns2:hasExactSynonym "GCG RSF" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3486 . -:format_3487 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3491 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc" ; + ns2:hasDefinition "Bioinformatics Sequence Markup Language format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3210 ], - :format_2333, - :format_3326 . - -:format_3499 a owl:Class ; + ns1:created_in "1.7" ; + ns1:documentation "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" ; + ns2:hasDefinition "Bowtie format for indexed reference genome for \"large\" genomes." ; + ns2:hasExactSynonym "Bowtie long index format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3210 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2921 . - -:format_3506 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDbXref ; + ns2:hasDefinition "Ensembl standard format for variation data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2921 . + +ns1:format_3506 a owl:Class ; rdfs:label "docx" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "Microsoft Word format." ; - oboInOwl:hasExactSynonym "Microsoft Word format", + ns1:created_in "1.8" ; + ns2:hasDefinition "Microsoft Word format." ; + ns2:hasExactSynonym "Microsoft Word format", "doc" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3507 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3507 . -:format_3508 a owl:Class ; +ns1:format_3508 a owl:Class ; rdfs:label "PDF" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "Portable Document Format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3507 . - -:format_3548 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Portable Document Format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3507 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3549 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1:format_3549 a owl:Class ; rdfs:label "nii" ; - :created_in "1.9" ; - :documentation ; - oboInOwl:hasDefinition "Medical image and metadata format of the Neuroimaging Informatics Technology Initiative." ; - oboInOwl:hasExactSynonym "NIfTI-1 format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3550 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Medical image and metadata format of the Neuroimaging Informatics Technology Initiative." ; + ns2:hasExactSynonym "NIfTI-1 format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3547 . - -:format_3551 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Text-based tagged file format for medical images generated using the MetaImage software package." ; + ns2:hasExactSynonym "Metalmage format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3547 . - -:format_3554 a owl:Class ; + ns1:created_in "1.9" ; + ns1:documentation ; + ns2:hasDefinition "Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns1:created_in "1.9" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_3555 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns1:created_in "1.9" ; + ns2:hasDefinition "File format used for scripts for the Statistical Package for the Social Sciences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_3556 a owl:Class ; +ns1:format_3556 a owl:Class ; rdfs:label "MHTML" ; - :created_in "1.9" ; - :documentation ; - :file_extension "mhtml|mht|eml" ; - :media_type ; - oboInOwl: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 incuded in EDAM as a specialisation of 'HTML'." ; - oboInOwl:hasDbXref , + ns1:created_in "1.9" ; + ns1:documentation ; + ns1:file_extension "mhtml|mht|eml" ; + ns1:media_type ; + ns2: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 incuded in EDAM as a specialisation of 'HTML'." ; + ns2: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", + ns2:hasDefinition "MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on." ; + ns2:hasExactSynonym "HTML email format", "HTML email message format", "MHT", "MHT format", "MHTML format", "MIME HTML", "MIME HTML format" ; - oboInOwl:hasRelatedSynonym "MIME multipart", + ns2:hasRelatedSynonym "MIME multipart", "MIME multipart format", "MIME multipart message", "MIME multipart message format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2331 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2331 . -:format_3578 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.10" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3110 ], - :format_2058, - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3110 ], + ns1:format_2058, + ns1:format_2333 . -:format_3579 a owl:Class ; +ns1: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", + ns1:created_in "1.10" ; + ns1:documentation ; + ns2:hasDefinition "Joint Picture Group file format for lossy graphics file." ; + ns2:hasExactSynonym "JPEG", "jpeg" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3580 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2058, - :format_2330 . - -:format_3581 a owl:Class ; + ns1:created_in "1.10" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2058, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This file format is for machine learning." ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3582 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_3583 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "AFG is a single text-based file assembly format that holds read and consensus information together" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Holds a tab-delimited chromosome /start /end / datavalue dataset." ; - rdfs:subClassOf :format_2330, - :format_2919 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3586 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "A BED file where each feature is described by all twelve columns." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12" ; - rdfs:subClassOf :format_3584 . + rdfs:subClassOf ns1:format_3584 . -:format_3587 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Tabular format of chromosome names and sizes used by Galaxy." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3003 . -:format_3588 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Custom Sequence annotation track format used by Galaxy." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Used for tracks/track views within galaxy." ; - rdfs:subClassOf :format_2330, - :format_2919 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3589 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Color space FASTA format sequence variant." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "FASTA format extended for color space information." ; - rdfs:subClassOf :format_2200, - :format_2554 . + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . -:format_3591 a owl:Class ; +ns1:format_3591 a owl:Class ; rdfs:label "TIFF" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "A versatile bitmap format." ; - oboInOwl:hasExactSynonym "tiff" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "A versatile bitmap format." ; + ns2:hasExactSynonym "tiff" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3592 a owl:Class ; +ns1: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:hasExactSynonym "bmp" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Standard bitmap storage format in the Microsoft Windows environment." ; + ns2:hasExactSynonym "bmp" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3593 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "IM is a format used by LabEye and other applications based on the IFUNC image processing library." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "IFUNC library reads and writes most uncompressed interchange versions of this format." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3594 a owl:Class ; +ns1:format_3594 a owl:Class ; rdfs:label "pcd" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "Photo CD format, which is the highest resolution format for images on a CD." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Photo CD format, which is the highest resolution format for images on a CD." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3595 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3596 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "PCX is an image file format that uses a simple form of run-length encoding. It is lossless." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3597 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "The PPM format is a lowest common denominator color image file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3598 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "The XBM format was replaced by XPM for X11 in 1989." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3599 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3600 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3601 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "RGB file format is the native raster graphics file format for Silicon Graphics workstations." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3602 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "The PGM format is a lowest common denominator grayscale file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "It is designed to be extremely easy to learn and write programs for." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3603 a owl:Class ; +ns1:format_3603 a owl:Class ; rdfs:label "PNG" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "PNG is a file format for image compression." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "PNG is a file format for image compression." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "It iis expected to replace the Graphics Interchange Format (GIF)." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3604 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation." ; + ns2:hasExactSynonym "Scalable Vector Graphics" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3547 . -:format_3605 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3608 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1933, + ns1:format_3607 . -:format_3609 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1931, + ns1:format_3607 . -:format_3610 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3607 . -:format_3611 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3607 . - -:format_3613 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3607 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Human ENCODE narrow peak format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Format that covers both the broad peak format and narrow peak format from ENCODE." ; - rdfs:subClassOf :format_3612 . + rdfs:subClassOf ns1:format_3612 . -:format_3614 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3612 . - -:format_3615 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Human ENCODE broad peak format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3612 . + +ns1:format_3615 a owl:Class ; rdfs:label "bgzip" ; - :created_in "1.11" ; - :documentation ; - oboInOwl:hasDefinition "Blocked GNU Zip format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Blocked GNU Zip format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3616 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3618 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "TAB-delimited genome position file index format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3617 . - -:format_3619 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "XML-based format used to store graph descriptions within Galaxy." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3617 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013 . - -:format_3622 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2921, - :format_3621 . - -:format_3623 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Data format used by the SQLite database conformant to the Gemini schema." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2921, + ns1:format_3621 . + +ns1: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 edam:edam, - edam:obsolete ; - oboInOwl:replacedBy :format_3326 ; + ns1:created_in "1.11" ; + ns1:deprecation_comment "Duplicate of http://edamontology.org/format_3326" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:format_2333, + ns1:format_2350 ; + ns2:hasDefinition "Format of a data index of some type." ; + ns2:inSubset ns4:edam, + ns4:obsolete ; + ns2:replacedBy ns1:format_3326 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:format_3624 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3326 . - -:format_3626 a owl:Class ; + ns1:created_in "1.11" ; + ns2:hasDefinition "An index of a genome database, indexed for use by the snpeff tool." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3326 . + +ns1: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", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Binary format used by MATLAB files to store workspace variables." ; + ns2:hasExactSynonym ".mat file format", "MAT file format", "MATLAB file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1499 ], - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1499 ], + ns1:format_3033 . -:format_3650 a owl:Class ; +ns1:format_3650 a owl:Class ; rdfs:label "netCDF" ; - :created_in "1.12" ; - :documentation ; - oboInOwl:comment "Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9." ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3245, - :format_3867 . - -:format_3651 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:comment "Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9." ; + ns2: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." ; + ns2:hasExactSynonym "ANDI-MS" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3245, + ns1:format_3867 . + +ns1:format_3651 a owl:Class ; rdfs:label "MGF" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Mascot Generic Format. Encodes multiple MS/MS spectra in a single file." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Mascot Generic Format. Encodes multiple MS/MS spectra in a single file." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3652 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Spectral data format file where each spectrum is written to a separate file." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3653 a owl:Class ; +ns1:format_3653 a owl:Class ; rdfs:label "pkl" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Spectral data file similar to dta." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Spectral data file similar to dta." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3654 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3245 . - -:format_3655 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation "https://dx.doi.org/10.1038%2Fnbt1031" ; + ns2:hasDefinition "Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3657 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation "http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3665 a owl:Class ; + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1:format_3665 a owl:Class ; rdfs:label "K-mer countgraph" ; - :created_in "1.12" ; - :documentation ; - :file_extension "oxlicg" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.12" ; + ns1:documentation ; + ns1:file_extension "oxlicg" ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "A list of k-mers and their occurences in a dataset. Can also be used as an implicit De Bruijn graph." ; - rdfs:subClassOf :format_2333, - :format_3617 . + ns2:hasDefinition "A list of k-mers and their occurences in a dataset. Can also be used as an implicit De Bruijn graph." ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3617 . -:format_3681 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3682 a owl:Class ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns1:file_extension "imzML" ; + ns2:hasDbXref ; + ns2:hasDefinition "imzML metadata is a data format for mass spectrometry imaging metadata." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3683 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3167, + ns1:format_3245 . -:format_3684 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167, - :format_3245 . - -:format_3685 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167, + ns1:format_3245 . + +ns1:format_3685 a owl:Class ; rdfs:label "SED-ML" ; - :citation , + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3167 . - -:format_3686 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3167 . + +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2013, + ns1:format_2333, + ns1:format_3167 . -:format_3687 a owl:Class ; +ns1: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 + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition """The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies.""" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2058, + ns1:format_2330, + ns1:format_3167 . -:format_3688 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2330 . - -:format_3689 a owl:Class ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "SBtab is a tabular format for biochemical network models." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3690 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Biological Connection Markup Language (BCML) is an XML format for biological pathways." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332 . - -:format_3691 a owl:Class ; + ns1:citation ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3692 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3693 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1:format_3693 a owl:Class ; rdfs:label "AGP" ; - :created_in "1.13" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2055, - :format_2330 . - -:format_3698 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2055, + ns1:format_2330 . + +ns1:format_3698 a owl:Class ; rdfs:label "SRA format" ; - :created_in "1.13" ; - :documentation ; - oboInOwl:hasDefinition "SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive." ; - oboInOwl:hasExactSynonym "SRA", + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDefinition "SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive." ; + ns2:hasExactSynonym "SRA", "SRA archive format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . -:format_3699 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . - -:format_3700 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDefinition "VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive." ; + ns2:hasExactSynonym "SRA native format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0955 ], - :format_2333, - :format_3326 . - -:format_3701 a owl:Class ; + ns1:created_in "1.13" ; + ns1:documentation ; + ns2:hasDefinition "Index file format used by the samtools package to index TAB-delimited genome position files." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0955 ], + ns1:format_2333, + ns1:format_3326 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2206 . + ns1:created_in "1.13" ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2206 . -:format_3702 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software." ; + ns2:hasExactSynonym "Magellan storage file format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3245 . -:format_3708 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3707 ], - :format_3706 . - -:format_3709 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2: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)." ; + ns2:hasExactSynonym "ABCD" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3707 ], + ns1:format_3706 . + +ns1: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", + ns1:created_in "1.14" ; + ns2: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." ; + ns2:hasExactSynonym "GCT format", "Res format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2058, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2058, + ns1:format_2330 . -:format_3710 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3245 . - -:format_3711 a owl:Class ; + ns1:created_in "1.14" ; + ns1:file_extension "wiff" ; + ns2:hasDefinition "Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex)." ; + ns2:hasExactSynonym "wiff" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3712 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Output format used by X! series search engines that is based on the XML language BIOML." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Proprietary file format for mass spectrometry data from Thermo Scientific." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Proprietary format for which documentation is not available." ; - rdfs:subClassOf :format_2333, - :format_3245 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . -:format_3713 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3714 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "\"Raw\" result file from Mascot database search." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3725 a owl:Class ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra." ; + ns2:hasExactSynonym "MaxQuant APL" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332 . -:format_3726 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "PMML uses XML to represent mining models. The structure of the models is described by an XML Schema." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "One or more mining models can be contained in a PMML document." ; - rdfs:subClassOf :format_2332 . + rdfs:subClassOf ns1:format_2332 . -:format_3727 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Image file format used by the Open Microscopy Environment (OME)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3728 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330 . -:format_3729 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:documentation ; + ns2:hasDefinition "Input format used by the Database of Genotypes and Phenotypes (dbGaP)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330 . -:format_3746 a owl:Class ; +ns1: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.15" ; + ns1:documentation ; + ns1:file_extension "biom" ; + ns2: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." ; + ns2:hasExactSynonym "BIological Observation Matrix format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3706 . -:format_3747 a owl:Class ; +ns1:format_3747 a owl:Class ; rdfs:label "protXML" ; - :created_in "1.15" ; - :documentation ; - oboInOwl:hasDbXref oboOther:MS_1001422 ; - oboInOwl:hasDefinition "A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.15" ; + ns1:documentation ; + ns2:hasDbXref ns3:MS_1001422 ; + ns2:hasDefinition "A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3752 a owl:Class ; +ns1:format_3752 a owl:Class ; rdfs:label "CSV" ; - :created_in "1.16" ; - :file_extension "csv" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.16" ; + ns1:file_extension "csv" ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Tabular data represented as comma-separated values in a text file." ; - oboInOwl:hasExactSynonym "Comma-separated values" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3751 . + ns2:hasDefinition "Tabular data represented as comma-separated values in a text file." ; + ns2:hasExactSynonym "Comma-separated values" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3751 . -:format_3758 a owl:Class ; +ns1:format_3758 a owl:Class ; rdfs:label "SEQUEST .out file" ; - :created_in "1.16" ; - oboInOwl:hasDefinition "\"Raw\" result file from SEQUEST database search." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3245 . - -:format_3764 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "\"Raw\" result file from SEQUEST database search." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . + +ns1: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", + ns1:created_in "1.16" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . + ns2:hasDefinition "XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . -:format_3765 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032 . + ns1:created_in "1.16" ; + ns2:hasDefinition "Data table formatted such that it can be passed/streamed within the KNIME platform." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032 . -:format_3770 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDefinition "UniProtKB XML sequence features format is an XML format available for downloading UniProt entries." ; + ns2:hasExactSynonym "UniProt XML", "UniProt XML format", "UniProtKB XML format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2547, - :format_2552 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2547, + ns1:format_2552 . -:format_3771 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDefinition "UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML)." ; + ns2:hasExactSynonym "UniProt RDF", "UniProt RDF format", "UniProtKB RDF format" ; - oboInOwl:hasNarrowSynonym "UniProt RDF/XML", + ns2:hasNarrowSynonym "UniProt RDF/XML", "UniProt RDF/XML format", "UniProtKB RDF/XML", "UniProtKB RDF/XML format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2376, - :format_2547 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2376, + ns1:format_2547 . -:format_3772 a owl:Class ; +ns1:format_3772 a owl:Class ; rdfs:label "BioJSON (BioXSD)" ; - :citation ; - :created_in "1.16" ; - :documentation ; - :example , + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns1:example , ; - :repository ; - oboInOwl: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'." ; - 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)", + ns1:repository ; + ns2: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'." ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "BioJSON (BioXSD data model)", "BioJSON format (BioXSD)", "BioXSD BioJSON", "BioXSD BioJSON format", @@ -15577,41 +15577,41 @@ experiments employing a combination of technologies.""" ; "BioXSD/GTrack BioJSON", "BioXSD|BioJSON|BioYAML BioJSON", "BioXSD|GTrack BioJSON" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1772 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3108 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1772 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], - :format_1919, - :format_1920, - :format_1921, - :format_2571, - :format_3464 . - -:format_3773 a owl:Class ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3108 ], + ns1:format_1919, + ns1:format_1920, + ns1:format_1921, + ns1:format_2571, + ns1:format_3464 . + +ns1:format_3773 a owl:Class ; rdfs:label "BioYAML" ; - :citation ; - :created_in "1.16" ; - :documentation ; - :example , + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns1:example , ; - :repository ; - oboInOwl: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'." ; - 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 editting, and object-oriented programming." ; - oboInOwl:hasExactSynonym "BioXSD BioYAML", + ns1:repository ; + ns2: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'." ; + ns2:hasDbXref ; + ns2: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 editting, and object-oriented programming." ; + ns2:hasExactSynonym "BioXSD BioYAML", "BioXSD BioYAML format", "BioXSD YAML", "BioXSD YAML format", @@ -15625,2921 +15625,2921 @@ experiments employing a combination of technologies.""" ; "BioYAML (BioXSD)", "BioYAML format", "BioYAML format (BioXSD)" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1772 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1772 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3108 ], - :format_1919, - :format_1920, - :format_1921, - :format_2571, - :format_3750 . - -:format_3774 a owl:Class ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3108 ], + ns1:format_1919, + ns1:format_1920, + ns1:format_1921, + ns1:format_2571, + ns1:format_3750 . + +ns1: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)", + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "BioJSON format (Jalview)", "JSON (Jalview)", "JSON format (Jalview)", "Jalview BioJSON", "Jalview BioJSON format", "Jalview JSON", "Jalview JSON format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_1920, - :format_1921, - :format_3464 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], + ns1:format_1920, + ns1:format_1921, + ns1:format_3464 . -:format_3775 a owl:Class ; +ns1:format_3775 a owl:Class ; rdfs:label "GSuite" ; - :citation , + ns1:citation , ; - :created_in "1.16" ; - :documentation , + ns1:created_in "1.16" ; + ns1:documentation , ; - :example ; - :repository ; - oboInOwl: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." ; - oboInOwl:hasDbXref , + ns1:example ; + ns1:repository ; + ns2: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." ; + ns2: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", + ns2: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." ; + ns2:hasExactSynonym "BioXSD/GTrack GSuite", "BioXSD|GTrack GSuite", "GSuite (GTrack ecosystem of formats)", "GSuite format", "GTrack|BTrack|GSuite GSuite", "GTrack|GSuite|BTrack GSuite" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_1920, - :format_2330 . + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . -:format_3776 a owl:Class ; +ns1:format_3776 a owl:Class ; rdfs:label "BTrack" ; - :created_in "1.16" ; - :repository ; - oboInOwl: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." ; - 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)", + ns1:created_in "1.16" ; + ns1:repository ; + ns2: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." ; + ns2: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." ; + ns2:hasExactSynonym "BTrack (GTrack ecosystem of formats)", "BTrack format", "BioXSD/GTrack BTrack", "BioXSD|GTrack BTrack", "GTrack|BTrack|GSuite BTrack", "GTrack|GSuite|BTrack BTrack" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2333, - :format_2548, - :format_2919 . - -:format_3777 a owl:Class ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2333, + ns1:format_2548, + ns1:format_2919 . + +ns1:format_3777 a owl:Class ; rdfs:label "MCPD" ; - :created_in "1.16" ; - :documentation , + ns1:created_in "1.16" ; + ns1:documentation , , , ; - :organisation , + ns1:organisation , ; - oboInOwl:comment "Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012)." ; - oboInOwl:hasDbXref , + ns2:comment "Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012)." ; + ns2: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", + ns2:hasDefinition "The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information." ; + ns2:hasExactSynonym "Bioversity MCPD", "FAO MCPD", "MCPD format", "Multi-Crop Passport Descriptors", "Multi-Crop Passport Descriptors format" ; - oboInOwl:hasNarrowSynonym "IPGRI MCPD", + ns2:hasNarrowSynonym "IPGRI MCPD", "MCPD V.1", "MCPD V.2" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3113 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3113 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3567 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3567 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2530 ], - :format_2330, - :format_3706 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2530 ], + ns1:format_2330, + ns1:format_3706 . -:format_3781 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3464, - :format_3780 . - -:format_3782 a owl:Class ; + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "JSON format of annotated scientific text used by PubAnnotations and other tools." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3464, + ns1:format_3780 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3780 . - -:format_3783 a owl:Class ; + ns1:citation ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "BioC is a standardised XML format for sharing and integrating text data and annotations." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3780 . + +ns1:format_3783 a owl:Class ; rdfs:label "PubTator format" ; - :citation , + ns1:citation , ; - :created_in "1.16" ; - :documentation ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Native textual export format of annotated scientific text from PubTator." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3780 . - -:format_3784 a owl:Class ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Native textual export format of annotated scientific text from PubTator." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3780 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2376, - :format_3749, - :format_3780 . + rdfs:subClassOf ns1:format_2376, + ns1:format_3749, + ns1:format_3780 . -:format_3785 a owl:Class ; +ns1:format_3785 a owl:Class ; rdfs:label "BioNLP Shared Task format" ; - :created_in "1.16" ; - :documentation , + ns1:created_in "1.16" ; + ns1:documentation , , , , ; - :example , + ns1:example , ; - oboInOwl:hasDbXref , + ns2: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", + ns2: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." ; + ns2:hasExactSynonym "BRAT format", "BRAT standoff format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3780 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3780 . -:format_3787 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3786 ], - :format_2350 . - -:format_3788 a owl:Class ; + ns1:created_in "1.16" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A query language (format) for structured database queries." ; + ns2:hasExactSynonym "Query format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3786 ], + ns1:format_2350 . + +ns1:format_3788 a owl:Class ; rdfs:label "SQL" ; - :created_in "1.16" ; - :file_extension "sql" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.16" ; + ns1:file_extension "sql" ; + ns1:media_type ; + ns2: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 edam:edam, - edam:formats ; + ns2:hasDefinition "SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases." ; + ns2:hasExactSynonym "Structured Query Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3789 a owl:Class ; +ns1:format_3789 a owl:Class ; rdfs:label "XQuery" ; - :created_in "1.16" ; - :documentation ; - :file_extension "xq|xqy|xquery" ; - 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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns1:file_extension "xq|xqy|xquery" ; + ns2:hasDbXref ; + ns2: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.)." ; + ns2:hasExactSynonym "XML Query" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3790 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "SPARQL Protocol and RDF Query Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330 . + rdfs:subClassOf ns1:format_2330 . -:format_3804 a owl:Class ; +ns1:format_3804 a owl:Class ; rdfs:label "xsd" ; - :created_in "1.17" ; - oboInOwl:hasDefinition "XML format for XML Schema." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332 . + ns1:created_in "1.17" ; + ns2:hasDefinition "XML format for XML Schema." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332 . -:format_3811 a owl:Class ; +ns1:format_3811 a owl:Class ; rdfs:label "XMFA" ; - :created_in "1.20" ; - :documentation ; - 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:hasExactSynonym "alignment format", + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "alignment format", "eXtended Multi-FastA format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2200, - :format_2554 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2200, + ns1:format_2554 . -:format_3812 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3813 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "The GEN file format contains genetic data and describes SNPs." ; + ns2:hasExactSynonym "Genotype file format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3814 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_3815 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_3816 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2030, - :format_2330 . - -:format_3817 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2030, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "format for the LaTeX document preparation system" ; + ns2:hasExactSynonym "LaTeX format" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "uses the TeX typesetting program format" ; - rdfs:subClassOf :format_2330, - :format_3507 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3507 . -:format_3818 a owl:Class ; +ns1: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", + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "ELAND", "eland" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . -:format_3819 a owl:Class ; +ns1:format_3819 a owl:Class ; rdfs:label "Relaxed PHYLIP Interleaved" ; - :created_in "1.20" ; - :documentation , + ns1:created_in "1.20" ; + ns1:documentation , ; - oboInOwl:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP format." ; - oboInOwl:hasExactSynonym "PHYLIP Interleaved format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP format." ; + ns2:hasExactSynonym "PHYLIP Interleaved format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2924 . -:format_3820 a owl:Class ; +ns1:format_3820 a owl:Class ; rdfs:label "Relaxed PHYLIP Sequential" ; - :created_in "1.20" ; - :documentation , + ns1:created_in "1.20" ; + ns1:documentation , ; - oboInOwl:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998)." ; - oboInOwl:hasExactSynonym "Relaxed PHYLIP non-interleaved", + ns2:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998)." ; + ns2:hasExactSynonym "Relaxed PHYLIP non-interleaved", "Relaxed PHYLIP non-interleaved format", "Relaxed PHYLIP sequential format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2924 . -:format_3821 a owl:Class ; +ns1: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", + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "Default XML format of VisANT, containing all the network information." ; + ns2:hasExactSynonym "VisANT xml", "VisANT xml format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . -:format_3822 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2330 . - -:format_3823 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "GML format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2330 . + +ns1:format_3823 a owl:Class ; rdfs:label "FASTG" ; - :created_in "1.20" ; - :documentation , + ns1:created_in "1.20" ; + ns1: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 edam:edam, - edam:formats ; + ns2:hasDefinition "FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty." ; + ns2:hasExactSynonym "FASTG assembly graph format" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "It is called FASTG, like FASTA, but the G stands for \"graph\"." ; - rdfs:subClassOf :format_2330, - :format_2561 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . -:format_3825 a owl:Class ; +ns1:format_3825 a owl:Class ; rdfs:label "nmrML" ; - :created_in "1.20" ; - :documentation :www.nmrML.org, + ns1:created_in "1.20" ; + ns1:documentation ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3824 . + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3824 . -:format_3826 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2057, - :format_2333, - :format_2920 . - -:format_3827 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition ". proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2057, + ns1:format_2333, + ns1:format_2920 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2919 . - -:format_3829 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition ". proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3828 . - -:format_3830 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2:hasDefinition "GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3828 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921, - :format_2333 . - -:format_3832 a owl:Class ; + ns1:created_in "1.20" ; + ns2:hasDefinition "Binary format used by the ARB software suite" ; + ns2:hasExactSynonym "ARB binary format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3833 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html" ; + ns2:hasDefinition "OpenMS format for grouping features in one map or across several maps." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3834 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html" ; + ns2:hasDefinition "OpenMS format for quantitation results (LC/MS features)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3835 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://www.psidev.info/mzdata-1_0_5-docs" ; + ns2:hasDefinition "Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3245 . - -:format_3836 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation "http://cruxtoolkit.sourceforge.net/tide-search.html" ; + ns2:hasDefinition "Format supported by the Tide tool for identifying peptides from tandem mass spectra." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3245 . + +ns1: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", + ns1:created_in "1.20" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1333, - :format_2332 . + ns2:hasDefinition "XML format as produced by the NCBI Blast package v2." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1333, + ns1:format_2332 . -:format_3838 a owl:Class ; +ns1:format_3838 a owl:Class ; rdfs:label "pptx" ; - :created_in "1.20" ; - :documentation ; - :media_type ; - oboInOwl:hasDefinition "Microsoft Powerpoint format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3547 . - -:format_3839 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns1:media_type ; + ns2:hasDefinition "Microsoft Powerpoint format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns1:file_extension "ibd" ; + ns2:hasDbXref ; + ns2:hasDefinition "ibd is a data format for mass spectrometry imaging data." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . -:format_3843 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3844 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3845 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "Chado-XML format is a direct mapping of the Chado relational schema into XML." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2555 . - -:format_3846 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2555 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_3097 . - -:format_3847 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "Output xml file from the InterProScan sequence analysis application." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_3097 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2013, - :format_2332 . - -:format_3848 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasExactSynonym "KEGG Markup Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2013, + ns1:format_2332 . + +ns1:format_3848 a owl:Class ; rdfs:label "PubMed XML" ; - :created_in "1.21" ; - oboInOwl:hasDefinition "XML format for collected entries from biobliographic databases MEDLINE and PubMed." ; - oboInOwl:hasExactSynonym "MEDLINE XML" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2848 . - -:format_3849 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDefinition "XML format for collected entries from biobliographic databases MEDLINE and PubMed." ; + ns2:hasExactSynonym "MEDLINE XML" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2848 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921, - :format_2333 . - -:format_3850 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "A set of XML compliant markup components for describing multiple sequence alignments." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921, + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2031, - :format_2332, - :format_2552 . - -:format_3851 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2031, + ns1:format_2332, + ns1:format_2552 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2332 . - -:format_3852 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "Tree structure of Protein Sequence Database Markup Language generated using Matra software." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2552 . - -:format_3853 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2552 . + +ns1:format_3853 a owl:Class ; rdfs:label "UniParc XML" ; - :created_in "1.21" ; - :documentation ; - oboInOwl:hasDefinition "XML format for the UniParc database." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2332 . - -:format_3854 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "XML format for the UniParc database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2332 . - -:format_3857 a owl:Class ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "XML format for the UniRef reference clusters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2332 . + +ns1:format_3857 a owl:Class ; rdfs:label "CWL" ; - :citation ; - :created_in "1.21" ; - :documentation , + ns1:citation ; + ns1:created_in "1.21" ; + ns1:documentation , , ; - :example ; - :file_extension "cwl" ; - :organisation , + ns1:example ; + ns1:file_extension "cwl" ; + ns1:organisation , ; - :repository ; - oboInOwl:hasDefinition "Common Workflow Language (CWL) format for description of command-line tools and workflows." ; - oboInOwl:hasExactSynonym "Common Workflow Language", + ns1:repository ; + ns2:hasDefinition "Common Workflow Language (CWL) format for description of command-line tools and workflows." ; + ns2:hasExactSynonym "Common Workflow Language", "CommonWL" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_3750 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_3750 . -:format_3858 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Proprietary file format for mass spectrometry data from Waters." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Proprietary format for which documentation is not available, but used by multiple tools." ; - rdfs:subClassOf :format_2333, - :format_3245 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3245 . -:format_3859 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns2:hasDefinition "A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3245 . -:format_3863 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3862 . + ns1:created_in "1.21" ; + ns2:hasDefinition "NLP format used by a specific type of corpus (collection of texts)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3862 . -:format_3864 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:citation ; + ns1:created_in "1.21" ; + ns1:documentation ; + ns1:example ; + ns1:repository ; + ns2:hasDefinition "mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows." ; + ns2:hasExactSynonym "miRTop format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1975, + ns1:format_3865 . -:format_3873 a owl:Class ; +ns1: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 edam:data, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3874 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2:hasDefinition "PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3875 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Portable binary format for trajectories produced by GROMACS package." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3876 a owl:Class ; +ns1: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 edam:edam, - edam:formats, + ns1:created_in "1.22" ; + ns2: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." ; + ns2:hasExactSynonym "Trajectory Next Generation format" ; + ns2:inSubset ns4:edam, + ns4:formats, "TNG" ; 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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3877 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . -:format_3878 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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)." ; + ns2:hasExactSynonym "AMBER trajectory format", "inpcrd" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2033, - :format_2330, - :format_3868 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . -:format_3880 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:hasDefinition "GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3881 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "AMBER Parm", "AMBER Parm7", "Parm7", "Prmtop", "Prmtop7" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3882 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3883 a owl:Class ; +ns1: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 tipically 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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:hasDefinition "GROMACS itp files (include topology) contain structure topology information, and are tipically 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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879, + ns1:format_3884 . -:format_3885 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates." ; + ns2:hasExactSynonym "Scripps Research Institute BinPos" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3886 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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)" ; + ns2:hasExactSynonym "restrt", "rst7" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2033, - :format_2330, - :format_3868 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . -:format_3887 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3879 . -:format_3888 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3884 . - -:format_3889 a owl:Class ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3884 . + +ns1: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", + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:hasDefinition "AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters)." ; + ns2:hasExactSynonym "AMBER Object File Format", "AMBER lib" ; - rdfs:subClassOf :format_2330, - :format_3884 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3884 . -:format_3906 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 D. Jeannerat, Magn. Reson. in Chem., 2017, 55, 7-14." ; rdfs:seeAlso ; - rdfs:subClassOf :format_2330, - :format_3824 . + rdfs:subClassOf ns1:format_2330, + ns1:format_3824 . -:format_3909 a owl:Class ; +ns1:format_3909 a owl:Class ; rdfs:label "BpForms" ; - :created_in "1.22" ; - :documentation , + ns1:created_in "1.22" ; + ns1: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 edam:edam, - edam: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 ; + ns1:ontology_used ns1:data_2301 ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:format_2035, + ns1:format_2330, + ns1:format_2571 . + +ns1:format_3910 a owl:Class ; rdfs:label "trr" ; - :created_in "1.22" ; - :documentation ; - oboInOwl:comment "The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760" ; - oboInOwl:hasDefinition "Format of trr files that contain the trajectory of a simulation experiment used by GROMACS." ; - rdfs:subClassOf :format_2033, - :format_2330, - :format_3868 . - -:format_3911 a owl:Class ; + ns1:created_in "1.22" ; + ns1:documentation ; + ns2:comment "The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760" ; + ns2:hasDefinition "Format of trr files that contain the trajectory of a simulation experiment used by GROMACS." ; + rdfs:subClassOf ns1:format_2033, + ns1:format_2330, + ns1:format_3868 . + +ns1:format_3911 a owl:Class ; rdfs:label "msh" ; - :created_in "1.22" ; - :documentation , + ns1:created_in "1.22" ; + ns1:documentation , , , ; - :example ; - :file_extension "msh" ; - :information_standard ; - :organisation , + ns1:example ; + ns1:file_extension "msh" ; + ns1:information_standard ; + ns1: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", + ns2: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." ; + ns2:hasExactSynonym "Mash sketch", "min-hash sketch" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2190 ], - :format_2333, - :format_2571 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2190 ], + ns1:format_2333, + ns1:format_2571 . -:format_3913 a owl:Class ; +ns1:format_3913 a owl:Class ; rdfs:label "Loom" ; - :created_in "1.23" ; - :documentation , + ns1:created_in "1.23" ; + ns1: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." ; + ns1:example ; + ns1:file_extension "loom" ; + ns2: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_2535 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3112 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3112 ], - :format_2058, - :format_3590 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2535 ], + ns1:format_2058, + ns1:format_3590 . -:format_3915 a owl:Class ; +ns1:format_3915 a owl:Class ; rdfs:label "Zarr" ; - :created_in "1.23" ; - :documentation , + ns1:created_in "1.23" ; + ns1:documentation , ; - :example ; - :file_extension "zarray", + ns1:example ; + ns1:file_extension "zarray", "zgroup" ; - oboInOwl:hasDefinition "The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data." ; + ns2: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 ], + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3112 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3112 ], - :format_2058, - :format_2333, - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2535 ], + ns1:format_2058, + ns1:format_2333, + ns1:format_3033 . -:format_3916 a owl:Class ; +ns1: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 ], + ns1:created_in "1.23" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "mtx" ; + ns1:organisation ; + ns2: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 ns1:is_format_of ; + owl:someValuesFrom ns1:data_3112 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3112 ], - :format_2058, - :format_2330, - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2535 ], + ns1:format_2058, + ns1:format_2330, + ns1:format_3033 . -:format_3951 a owl:Class ; +ns1:format_3951 a owl:Class ; rdfs:label "BcForms" ; - :created_in "1.24" ; - :documentation , + ns1:created_in "1.24" ; + ns1: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)." ; + ns1:example ; + ns1:media_type "text/plain" ; + ns1:ontology_used ; + ns1:organisation ; + ns2: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 . + rdfs:subClassOf ns1:format_2030, + ns1:format_2062, + ns1:format_2330 . -:format_3956 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.24" ; + ns1:documentation ; + ns1:file_extension "nq" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "N-Quads should not be confused with N-Triples which does not contain graph information." ; - rdfs:subClassOf :format_2330, - :format_2376 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2376 . -:format_3969 a owl:Class ; +ns1:format_3969 a owl:Class ; rdfs:label "Vega" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3464, - :format_3547 . - -:format_3970 a owl:Class ; + ns1:example ; + ns1:file_extension "json" ; + ns1:media_type "application/json" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3464, + ns1:format_3547 . + +ns1:format_3970 a owl:Class ; rdfs:label "Vega-lite" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3464, - :format_3547 . - -:format_3971 a owl:Class ; + ns1:example ; + ns1:file_extension "json" ; + ns1:media_type "application/json" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3464, + ns1:format_3547 . + +ns1:format_3971 a owl:Class ; rdfs:label "NeuroML" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1:documentation , ; - :example , + ns1:example , ; - :media_type "application/xml" ; - :organisation ; - oboInOwl:hasDefinition "A model description language for computational neuroscience." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3241 ], - :format_2013, - :format_2332 . - -:format_3972 a owl:Class ; + ns1:media_type "application/xml" ; + ns1:organisation ; + ns2:hasDefinition "A model description language for computational neuroscience." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3241 ], + ns1:format_2013, + ns1:format_2332 . + +ns1:format_3972 a owl:Class ; rdfs:label "BNGL" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1:documentation , , ; - :example ; - :file_extension "bngl" ; - :media_type "application/xml", + ns1:example ; + ns1:file_extension "bngl" ; + ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3241 ], - :format_2013, - :format_2330 . - -:format_3973 a owl:Class ; + ns1:organisation ; + ns2: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." ; + ns2:hasExactSynonym "BioNetGen Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3241 ], + ns1:format_2013, + ns1:format_2330 . + +ns1:format_3973 a owl:Class ; rdfs:label "Docker image format" ; - :created_in "1.25" ; - :documentation , + ns1:created_in "1.25" ; + ns1:documentation , ; - :example ; - :file_extension "dockerfile" ; - :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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2571 . - -:format_3975 a owl:Class ; + ns1:example ; + ns1:file_extension "dockerfile" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2571 . + +ns1: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:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_3976 a owl:Class ; + ns1:created_in "1.25" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "gfa" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2561 . - -:format_3977 a owl:Class ; + ns1:created_in "1.25" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "gfa" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2561 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_3620 . - -:format_3978 a owl:Class ; + ns1:created_in "1.25" ; + ns1:documentation ; + ns1:example ; + ns1:file_extension "xlsx" ; + ns1:media_type "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ; + ns1:organisation ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_3620 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551 . - -:format_3979 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "contig" ; + ns2:hasDefinition "The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2031, - :format_3475 . - -:format_3980 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "wego" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2031, + ns1:format_3475 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "rpkm" ; + ns2:hasDefinition "Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads." ; + ns2:hasExactSynonym "Gene expression levels table format" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2058, + ns1:format_3475 . -:format_3981 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "tar" ; + ns2:hasDefinition "TAR archive file format generated by the Unix-based utility tar." ; + ns2:hasExactSynonym "TAR", "Tarball" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 "https://en.wikipedia.org/wiki/Tar_(computing)" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_3982 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "chain" ; + ns2:hasDefinition "The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://genome.ucsc.edu/goldenPath/help/chain.html" ; - rdfs:subClassOf :format_2330, - :format_2920 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . -:format_3983 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "net" ; + ns2:hasDefinition "The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://genome.ucsc.edu/goldenPath/help/net.html" ; - rdfs:subClassOf :format_1920, - :format_2330 . + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . -:format_3984 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1920, - :format_2330 . - -:format_3985 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "qmap" ; + ns2:hasDefinition "Format of QMAP files generated for methylation data from an internal BGI pipeline." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1920, + ns1:format_2330 . + +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "ga" ; + ns2:hasDefinition "An emerging format for high-level Galaxy workflow description." ; + ns2:hasExactSynonym "Galaxy workflow format", "GalaxyWF" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://github.com/galaxyproject/gxformat2" ; - rdfs:subClassOf :format_2032, - :format_2330 . + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_3986 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "wmv" ; + ns2:hasDefinition "The proprietary native video format of various Microsoft programs such as Windows Media Player." ; + ns2:hasExactSynonym "Windows Media Video format", "Windows movie file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Windows_Media_Video" ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3987 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "zip" ; + ns2:hasDefinition "ZIP is an archive file format that supports lossless data compression." ; + ns2:hasExactSynonym "ZIP" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "A ZIP file may contain one or more files or directories that may have been compressed." ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Zip_(file_format)" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_3988 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "lsm" ; + ns2:hasDefinition "Zeiss' proprietary image format based on TIFF." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3989 a owl:Class ; +ns1:format_3989 a owl:Class ; rdfs:label "GZIP format" ; - :created_in "1.25" ; - :file_extension "gz", + ns1:created_in "1.25" ; + ns1:file_extension "gz", "gzip" ; - oboInOwl:hasDefinition "GNU zip compressed file format common to Unix-based operating systems." ; - oboInOwl:hasExactSynonym "GNU Zip" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "GNU zip compressed file format common to Unix-based operating systems." ; + ns2:hasExactSynonym "GNU Zip" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Gzip" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_3990 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "avi" ; + ns2:hasDefinition "Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback." ; + ns2:hasExactSynonym "Audio Video Interleaved" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Audio_Video_Interleave" ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3991 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_2919 . - -:format_3992 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "trackDb" ; + ns2:hasDefinition "A declaration file format for UCSC browsers track dataset display charateristics." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_2919 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "cigar" ; + ns2: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." ; + ns2:hasExactSynonym "CIGAR" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "http://wiki.bits.vib.be/index.php/CIGAR/" ; - rdfs:subClassOf :format_2330, - :format_2920 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2920 . -:format_3993 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_3994 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "stl" ; + ns2: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." ; + ns2:hasExactSynonym "stl" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "u3d" ; + ns2: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." ; + ns2:hasExactSynonym "Universal 3D", "Universal 3D format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3995 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "tex" ; + ns2:hasDefinition "Bitmap image format used for storing textures." ; + ns2:inSubset ns4:edam, + ns4: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 interchangable." ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3996 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "py" ; + ns2:hasDefinition "Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming." ; + ns2:hasExactSynonym "Python", "Python program" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_3997 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "mp4" ; + ns2:hasDefinition "A digital multimedia container format most commonly used to store video and audio." ; + ns2:hasExactSynonym "MP4" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group" ; - rdfs:subClassOf :format_2333, - :format_3547 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . -:format_3998 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "pl" ; + ns2:hasDefinition "Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages." ; + ns2:hasExactSynonym "Perl", "Perl program" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_3999 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns1:file_extension "R" ; + ns2: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." ; + ns2:hasExactSynonym "R", "R program" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_4000 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "Rmd" ; + ns2:hasDefinition "A file format for making dynamic documents (R Markdown scripts) with the R language." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://rmarkdown.rstudio.com/articles_intro.html" ; - rdfs:subClassOf :format_2032, - :format_2330 . + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . -:format_4001 a owl:Class ; +ns1:format_4001 a owl:Class ; rdfs:label "NIFTI format" ; - :created_in "1.25" ; - :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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3547 . - -:format_4002 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "nii" ; + ns2: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." ; + ns2:hasExactSynonym "NIFTI" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3547 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "pickle" ; + ns2:hasDefinition "Format used by Python pickle module for serializing and de-serializing a Python object structure." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://docs.python.org/2/library/pickle.html" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_4003 a owl:Class ; +ns1: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . - -:format_4004 a owl:Class ; + ns1:created_in "1.25" ; + ns1:file_extension "npy" ; + ns2: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." ; + ns2:hasExactSynonym "NumPy" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "repz" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_4005 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.25" ; + ns1:file_extension "cfg" ; + ns2:hasDefinition "A configuration file used by various programs to store settings that are specific to their respective software." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2330 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2330 . -:format_4006 a owl:Class ; +ns1: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 algorith." ; - oboInOwl:hasExactSynonym "Zstandard compression format", + ns1:created_in "1.25" ; + ns1:file_extension "zst" ; + ns2:hasDefinition "Format used by the Zstandard real-time compression algorith." ; + ns2:hasExactSynonym "Zstandard compression format", "Zstandard-compressed file format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0006 ], - :format_2333 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:format_2333 . -:format_4007 a owl:Class ; +ns1: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2032, - :format_2330 . - -:hasHumanReadableId a owl:AnnotationProperty ; + ns1:created_in "1.25" ; + ns1:file_extension "m" ; + ns2:hasDefinition "The file format for MATLAB scripts or functions." ; + ns2:hasExactSynonym "MATLAB" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2032, + ns1:format_2330 . + +ns1:hasHumanReadableId a owl:AnnotationProperty ; rdfs:label "hasHumanReadableId" ; - rdfs:subPropertyOf oboInOwl:hasAlternativeId . + rdfs:subPropertyOf ns2:hasAlternativeId . -:has_format a owl:ObjectProperty ; +ns1:has_format a owl:ObjectProperty ; rdfs:label "has format" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A has_format B' defines for the subject A, that it has the object B as its data format." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 ; + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:format_1915 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000298\"", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#has-quality\"" ; - owl:inverseOf :is_format_of . + owl:inverseOf ns1:is_format_of . -:has_identifier a owl:ObjectProperty ; +ns1:has_identifier a owl:ObjectProperty ; rdfs:label "has identifier" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A has_identifier B' defines for the subject A, that it has the object B as its identifier." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 . + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:data_0842 ; + owl:inverseOf ns1:is_identifier_of . -:information_standard a owl:AnnotationProperty ; +ns1:information_standard a owl:AnnotationProperty ; rdfs:label "Information standard" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:comment "\"Supported by the given data format\" here means, that the given format enables representation of data that satisfies the information standard." ; - 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", + ns3:is_metadata_tag "true" ; + ns2:comment "\"Supported by the given data format\" here means, that the given format enables representation of data that satisfies the information standard." ; + ns2: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." ; + ns2:hasNarrowSynonym "Minimum information checklist", "Minimum information standard" ; - oboInOwl:inSubset "concept_properties" . + ns2:inSubset "concept_properties" . -:is_deprecation_candidate a owl:AnnotationProperty ; +ns1:is_deprecation_candidate a owl:AnnotationProperty ; rdfs:label "deprecation_candidate" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "When 'true', the concept has been proposed to be deprecated." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "When 'true', the concept has been proposed to be deprecated." ; + ns2:inSubset "concept_properties" . -:is_refactor_candidate a owl:AnnotationProperty ; +ns1:is_refactor_candidate a owl:AnnotationProperty ; rdfs:label "refactor_candidate" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "When 'true', the concept has been proposed to be refactored." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "When 'true', the concept has been proposed to be refactored." ; + ns2:inSubset "concept_properties" . -:isdebtag a owl:AnnotationProperty ; +ns1:isdebtag a owl:AnnotationProperty ; rdfs:label "isdebtag" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "When 'true', the concept has been proposed or is supported within Debian as a tag." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "When 'true', the concept has been proposed or is supported within Debian as a tag." ; + ns2:inSubset "concept_properties" . -:media_type a owl:AnnotationProperty ; +ns1:media_type a owl:AnnotationProperty ; rdfs:label "Media type" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasNarrowSynonym "MIME type" ; + ns2:inSubset "concept_properties" . -:next_id a owl:AnnotationProperty . +ns1:next_id a owl:AnnotationProperty . -:notRecommendedForAnnotation a owl:AnnotationProperty ; +ns1:notRecommendedForAnnotation a owl:AnnotationProperty ; rdfs:label "notRecommendedForAnnotation" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "Whether terms associated with this concept are recommended for use in annotation." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Whether terms associated with this concept are recommended for use in annotation." ; + ns2:inSubset "concept_properties" . -:obsolete_since a owl:AnnotationProperty ; +ns1:obsolete_since a owl:AnnotationProperty ; rdfs:label "Obsolete since" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "Version in which a concept was made obsolete." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Version in which a concept was made obsolete." ; + ns2:inSubset "concept_properties" . -:oldParent a owl:AnnotationProperty ; +ns1:oldParent a owl:AnnotationProperty ; rdfs:label "Old parent" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "EDAM concept URI of the erstwhile \"parent\" of a now deprecated concept." ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "EDAM concept URI of the erstwhile \"parent\" of a now deprecated concept." ; + ns2:inSubset "concept_properties" . -:oldRelated a owl:AnnotationProperty ; +ns1:oldRelated a owl:AnnotationProperty ; rdfs:label "Old related" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_properties" . -:ontology_used a owl:AnnotationProperty ; +ns1:ontology_used a owl:AnnotationProperty ; rdfs:label "Ontology used" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_properties" . -:operation_0225 a owl:Class ; +ns1:operation_0225 a owl:Class ; rdfs:label "Data retrieval (database cross-reference)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Search database to retrieve all relevant references to a particular entity or entry." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search database to retrieve all relevant references to a particular entity or entry." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0228 a owl:Class ; +ns1:operation_0228 a owl:Class ; rdfs:label "Data index analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0227 ; - oboInOwl:hasDefinition "Analyse an index of biological data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0227 ; + ns2:hasDefinition "Analyse an index of biological data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0229 a owl:Class ; +ns1:operation_0229 a owl:Class ; rdfs:label "Annotation retrieval (sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve basic information about a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve basic information about a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0232 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Merge two or more (typically overlapping) molecular sequences." ; + ns2:hasExactSynonym "Sequence splicing" ; + ns2:hasNarrowSynonym "Paired-end merging", "Paired-end stitching", "Read merging", "Read stitching" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0234 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate sequence complexity, for example to find low-complexity regions in sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1259 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0157 ], - :operation_0236 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1259 ], + ns1:operation_0236 . -:operation_0235 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0157 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1260 ], - :operation_0236 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1260 ], + ns1:operation_0236 . -:operation_0238 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery)." ; + ns2:hasExactSynonym "Motif discovery" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Motifs and patterns might be conserved or over-represented (occur with improbable frequency)." ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0858 ], - :operation_0253, - :operation_2404 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0858 ], + ns1:operation_0253, + ns1:operation_2404 . -:operation_0240 a owl:Class ; +ns1:operation_0240 a owl:Class ; rdfs:label "Sequence motif comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Find motifs shared by molecular sequences." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find motifs shared by molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0858 ], - :operation_2404, - :operation_2451 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0858 ], + ns1:operation_2404, + ns1:operation_2451 . -:operation_0241 a owl:Class ; +ns1:operation_0241 a owl:Class ; rdfs:label "Transcription regulatory sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0438 ; - oboInOwl:hasDefinition "Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0438 ; + ns2:hasDefinition "Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0438 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0438 ; + ns2:hasDefinition "Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0438 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0243 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0250 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0250, + ns1:operation_2406 ; + ns2:hasDefinition "Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0250 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0245 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or screen for 3D structural motifs in protein structure(s)." ; + ns2:hasExactSynonym "Protein structural feature identification", "Protein structural motif recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0166 ], + ns1:operation_2406, + ns1:operation_3092 . -:operation_0254 a owl:Class ; +ns1:operation_0254 a owl:Class ; rdfs:label "Data retrieval (feature table)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Extract a sequence feature table from a sequence database entry." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Extract a sequence feature table from a sequence database entry." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0255 a owl:Class ; +ns1:operation_0255 a owl:Class ; rdfs:label "Feature table query" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query the features (in a feature table) of molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query the features (in a feature table) of molecular sequence(s)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0257 a owl:Class ; +ns1:operation_0257 a owl:Class ; rdfs:label "Data retrieval (sequence alignment)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Display basic information about a sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Display basic information about a sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0259 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare (typically by aligning) two molecular sequence alignments." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "See also 'Sequence profile alignment'." ; - rdfs:subClassOf :operation_0258, - :operation_2424 . + rdfs:subClassOf ns1:operation_0258, + ns1:operation_2424 . -:operation_0260 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3081, - :operation_3434 . - -:operation_0261 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3081, + ns1:operation_3434 . + +ns1:operation_0261 a owl:Class ; rdfs:label "Nucleic acid property processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0262 ; - oboInOwl:hasDefinition "Process (read and / or write) physicochemical property data of nucleic acids." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0262 ; + ns2:hasDefinition "Process (read and / or write) physicochemical property data of nucleic acids." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0264 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict splicing alternatives or transcript isoforms from analysis of sequence data." ; + ns2:hasExactSynonym "Alternative splicing analysis", "Alternative splicing detection", "Differential splicing analysis", "Splice transcript prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], - :operation_2499 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_2499 . -:operation_0265 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects." ; + ns2:hasNarrowSynonym "Frameshift error detection" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3168 ], + ns1:operation_3195, + ns1:operation_3227 . -:operation_0266 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0268 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict super-secondary structure of protein sequence(s)." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1277 ], + ns1:operation_0267 . -:operation_0271 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "This is a \"organisational class\" not very useful for annotation per se." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2423, + ns1:operation_2480 ; + ns2:consider ns1:operation_0474, + ns1:operation_0475 ; + ns2:hasDefinition "Predict tertiary structure of a molecular (biopolymer) sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0272 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences." ; + ns2:hasExactSynonym "Residue interaction prediction" ; + ns2:hasNarrowSynonym "Contact map prediction", "Protein contact map prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_0250, + ns1:operation_2479 . -:operation_0273 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2949 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2949 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2949 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0274 a owl:Class ; +ns1:operation_0274 a owl:Class ; rdfs:label "Protein-protein interaction prediction (from protein sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2464 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2464 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0275 a owl:Class ; +ns1:operation_0275 a owl:Class ; rdfs:label "Protein-protein interaction prediction (from protein structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2464 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2464 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0277 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2497 ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Compare two or more biological pathways or networks." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_0280 a owl:Class ; +ns1:operation_0280 a owl:Class ; rdfs:label "Data retrieval (restriction enzyme annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on restriction enzymes or restriction enzyme sites." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on restriction enzymes or restriction enzyme sites." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0281 a owl:Class ; +ns1:operation_0281 a owl:Class ; rdfs:label "Genetic marker identification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0415 ; - oboInOwl:hasDefinition "Identify genetic markers in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0415 ; + ns2:hasDefinition "Identify genetic markers in DNA sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify and plot third base position variability in a nucleotide sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1263 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], - :operation_0286, - :operation_0564 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1263 ], + ns1:operation_0286, + ns1:operation_0564 . -:operation_0289 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences." ; + ns2:hasExactSynonym "Phylogenetic distance matrix generation", "Sequence distance calculation", "Sequence distance matrix construction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0870 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], - :operation_2451, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0870 ], + ns1:operation_2451, + ns1:operation_3429 . -:operation_0290 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2044 ], - :operation_2451 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2044 ], + ns1:operation_2451 . -:operation_0293 a owl:Class ; +ns1:operation_0293 a owl:Class ; rdfs:label "Hybrid sequence alignment construction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0292 ; + ns2:hasDefinition "Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0301 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0303 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2928 ; + ns2:hasDefinition "Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0303 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0302 a owl:Class ; +ns1:operation_0302 a owl:Class ; rdfs:label "Protein threading" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Align molecular sequence to structure in 3D space (threading)." ; - oboInOwl:hasExactSynonym "Sequence-structure alignment" ; - oboInOwl:hasNarrowSynonym "Sequence-3D profile alignment", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Align molecular sequence to structure in 3D space (threading)." ; + ns2:hasExactSynonym "Sequence-structure alignment" ; + ns2:hasNarrowSynonym "Sequence-3D profile alignment", "Sequence-to-3D-profile alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1460 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0893 ], - :operation_0303 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0893 ], + ns1:operation_0303 . -:operation_0305 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3068 ], - :operation_2421 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], + ns1:operation_2421 . -:operation_0307 a owl:Class ; +ns1:operation_0307 a owl:Class ; rdfs:label "Virtual PCR" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Perform in-silico (virtual) PCR." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Perform in-silico (virtual) PCR." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . -:operation_0309 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families." ; + ns2:hasExactSynonym "Microarray probe prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2717 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], - :operation_2419, - :operation_2430 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2717 ], + ns1:operation_2419, + ns1:operation_2430 . -:operation_0311 a owl:Class ; +ns1:operation_0311 a owl:Class ; rdfs:label "Microarray data standardisation and normalisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:hasDefinition "Standardize or normalize microarray data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3435 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:hasDefinition "Standardize or normalize microarray data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3435 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0312 a owl:Class ; +ns1:operation_0312 a owl:Class ; rdfs:label "Sequencing-based expression profile data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) SAGE, MPSS or SBS experimental data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) SAGE, MPSS or SBS experimental data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0313 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering." ; + ns2:hasNarrowSynonym "Gene expression clustering", "Gene expression profile clustering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3111 ], - :operation_0315, - :operation_3432 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3111 ], + ns1:operation_0315, + ns1:operation_3432 . -:operation_0316 a owl:Class ; +ns1:operation_0316 a owl:Class ; rdfs:label "Functional profiling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Interpret (in functional terms) and annotate gene expression data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2495 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Interpret (in functional terms) and annotate gene expression data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2495 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0317 a owl:Class ; +ns1:operation_0317 a owl:Class ; rdfs:label "EST and cDNA sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2403 ; - oboInOwl:hasDefinition "Analyse EST or cDNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2403 ; + ns2:hasDefinition "Analyse EST or cDNA sequences." ; + ns2:inSubset ns4: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 ; +ns1:operation_0318 a owl:Class ; rdfs:label "Structural genomics target selection" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2406 ; - oboInOwl:hasDefinition "Identify and select targets for protein structural determination." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2406 ; + ns2:hasDefinition "Identify and select targets for protein structural determination." ; + ns2:inSubset ns4: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 ; +ns1:operation_0326 a owl:Class ; rdfs:label "Phylogenetic tree editing" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Edit a phylogenetic tree." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Edit a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0872 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0872 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0872 ], - :operation_0324, - :operation_3096 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0872 ], + ns1:operation_0324, + ns1:operation_3096 . -:operation_0327 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Phylogenetic shadowing" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0194 ], + ns1:operation_0323 . -:operation_0328 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2415 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:operation_2415 ; + ns2:hasDefinition "Simulate the folding of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2415 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0329 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0474 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0474 ; + ns2:hasDefinition "Predict the folding pathway(s) or non-native structural intermediates of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0474 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0330 a owl:Class ; +ns1:operation_0330 a owl:Class ; rdfs:label "Protein SNP mapping" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0331 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0331 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0332 a owl:Class ; +ns1:operation_0332 a owl:Class ; rdfs:label "Immunogen design" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Design molecules that elicit an immune response (immunogens)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Design molecules that elicit an immune response (immunogens)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0333 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0420 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0420 ; + ns2:hasDefinition "Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0420 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0334 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate Km, Vmax and derived data for an enzyme reaction." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0821 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0821 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2024 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2024 ], + ns1:operation_0250 . -:operation_0336 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2428 . - -:operation_0340 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Test and validate the format and content of a data file." ; + ns2:hasExactSynonym "File format validation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2428 . + +ns1:operation_0340 a owl:Class ; rdfs:label "Protein secondary database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_3092 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3092 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0341 a owl:Class ; +ns1:operation_0341 a owl:Class ; rdfs:label "Motif database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :operation_0253 ; - oboInOwl:hasDefinition "Screen a sequence against a motif or pattern database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:operation_0253 ; + ns2:hasDefinition "Screen a sequence against a motif or pattern database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0342 a owl:Class ; +ns1:operation_0342 a owl:Class ; rdfs:label "Sequence profile database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :operation_0239 ; - oboInOwl:hasDefinition "Search a database of sequence profiles with a query sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:operation_0239 ; + ns2:hasDefinition "Search a database of sequence profiles with a query sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0343 a owl:Class ; +ns1:operation_0343 a owl:Class ; rdfs:label "Transmembrane protein database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2421 ; - oboInOwl:hasDefinition "Search a database of transmembrane proteins, for example for sequence or structural similarities." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2421 ; + ns2:hasDefinition "Search a database of transmembrane proteins, for example for sequence or structural similarities." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0344 a owl:Class ; +ns1:operation_0344 a owl:Class ; rdfs:label "Sequence retrieval (by code)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a database and retrieve sequences with a given entry code or accession number." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a database and retrieve sequences with a given entry code or accession number." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0345 a owl:Class ; +ns1:operation_0345 a owl:Class ; rdfs:label "Sequence retrieval (by keyword)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a database and retrieve sequences containing a given keyword." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a database and retrieve sequences containing a given keyword." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0347 a owl:Class ; +ns1:operation_0347 a owl:Class ; rdfs:label "Sequence database search (by motif or pattern)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0239 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0239 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0348 a owl:Class ; +ns1:operation_0348 a owl:Class ; rdfs:label "Sequence database search (by amino acid composition)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0338 ; - oboInOwl:hasDefinition "Search a sequence database and retrieve sequences of a given amino acid composition." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0338 ; + ns2:hasDefinition "Search a sequence database and retrieve sequences of a given amino acid composition." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0349 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0338 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0338 . -:operation_0350 a owl:Class ; +ns1:operation_0350 a owl:Class ; rdfs:label "Sequence database search (by sequence using word-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method." ; + ns2:inSubset ns4: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 ; +ns1:operation_0351 a owl:Class ; rdfs:label "Sequence database search (by sequence using profile-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "This includes tools based on PSI-BLAST." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0352 a owl:Class ; +ns1:operation_0352 a owl:Class ; rdfs:label "Sequence database search (by sequence using local alignment-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method." ; + ns2:inSubset ns4: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 ; +ns1:operation_0353 a owl:Class ; rdfs:label "Sequence database search (by sequence using global alignment-based methods)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method." ; + ns2:inSubset ns4: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 ; +ns1:operation_0354 a owl:Class ; rdfs:label "Sequence database search (by sequence for primer sequences)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0346 ; + ns2:hasDefinition "Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences." ; + ns2:inSubset ns4: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 ; +ns1:operation_0355 a owl:Class ; rdfs:label "Sequence database search (by molecular weight)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_2929 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2929 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0356 a owl:Class ; +ns1:operation_0356 a owl:Class ; rdfs:label "Sequence database search (by isoelectric point)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0338 ; - oboInOwl:hasDefinition "Search sequence(s) or a sequence database for sequences of a given isoelectric point." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0338 ; + ns2:hasDefinition "Search sequence(s) or a sequence database for sequences of a given isoelectric point." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0357 a owl:Class ; +ns1:operation_0357 a owl:Class ; rdfs:label "Structure retrieval (by code)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a tertiary structure database and retrieve entries with a given entry code or accession number." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a tertiary structure database and retrieve entries with a given entry code or accession number." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0358 a owl:Class ; +ns1:operation_0358 a owl:Class ; rdfs:label "Structure retrieval (by keyword)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a tertiary structure database and retrieve entries containing a given keyword." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a tertiary structure database and retrieve entries containing a given keyword." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0359 a owl:Class ; +ns1:operation_0359 a owl:Class ; rdfs:label "Structure database search (by sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0346 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0346 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0360 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a database of molecular structure and retrieve structures that are similar to a query structure." ; + ns2:hasExactSynonym "Structure database search (by structure)", "Structure retrieval by structure" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0339, - :operation_2483 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0339, + ns1:operation_2483 . -:operation_0363 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate the reverse and / or complement of a nucleotide sequence." ; + ns2:hasExactSynonym "Nucleic acid sequence reverse and complement", "Reverse / complement", "Reverse and complement" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0230 . + rdfs:subClassOf ns1:operation_0230 . -:operation_0364 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0230 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a random sequence, for example, with a specific character composition." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0230 . -:operation_0365 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate digest fragments for a nucleotide sequence containing restriction sites." ; + ns2:hasExactSynonym "Nucleic acid restriction digest" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1239 ], - :operation_0230, - :operation_0262 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1239 ], + ns1:operation_0230, + ns1:operation_0262 . -:operation_0366 a owl:Class ; +ns1:operation_0366 a owl:Class ; rdfs:label "Protein sequence cleavage" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398)." ; - oboInOwl:hasDefinition "Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage)." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1238 ], + ns1:created_in "beta12orEarlier" ; + ns2:comment "This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398)." ; + ns2:hasDefinition "Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_0230 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1238 ], + ns1:operation_0230 . -:operation_0367 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0368 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mask characters in a molecular sequence (replacing those characters with a mask character)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "For example, SNPs or repeats in a DNA sequence might be masked." ; - rdfs:subClassOf :operation_0231 . + rdfs:subClassOf ns1:operation_0231 . -:operation_0370 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Create (or remove) restriction sites in sequences, for example using silent mutations." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0371 a owl:Class ; +ns1:operation_0371 a owl:Class ; rdfs:label "DNA translation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Translate a DNA sequence into protein." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Translate a DNA sequence into protein." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0108 ], - :operation_0233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0108 ], + ns1:operation_0233 . -:operation_0372 a owl:Class ; +ns1:operation_0372 a owl:Class ; rdfs:label "DNA transcription" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Transcribe a nucleotide sequence into mRNA sequence(s)." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Transcribe a nucleotide sequence into mRNA sequence(s)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :operation_0233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:operation_0233 . -:operation_0377 a owl:Class ; +ns1:operation_0377 a owl:Class ; rdfs:label "Sequence composition calculation (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Calculate base frequency or word composition of a nucleotide sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0236 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Calculate base frequency or word composition of a nucleotide sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0236 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0378 a owl:Class ; +ns1:operation_0378 a owl:Class ; rdfs:label "Sequence composition calculation (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Calculate amino acid frequency or word composition of a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0236 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Calculate amino acid frequency or word composition of a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0236 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0379 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0237, - :operation_0415 . - -:operation_0380 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0237, + ns1:operation_0415 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0236, - :operation_0237 . - -:operation_0383 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse repeat sequence organisation such as periodicity." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0236, + ns1:operation_0237 . + +ns1:operation_0383 a owl:Class ; rdfs:label "Protein hydropathy calculation (from structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2574 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2574 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0384 a owl:Class ; +ns1:operation_0384 a owl:Class ; rdfs:label "Accessible surface calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:AtomAccessibilitySolvent", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2:hasDefinition "Calculate solvent accessible or buried surface areas in protein or other molecular structures." ; + ns2:hasNarrowSynonym "Protein solvent accessibility calculation" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1542 ], + ns1:operation_3351 . -:operation_0385 a owl:Class ; +ns1:operation_0385 a owl:Class ; rdfs:label "Protein hydropathy cluster calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify clusters of hydrophobic or charged residues in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0393 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify clusters of hydrophobic or charged residues in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0393 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0386 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate whether a protein structure has an unusually large net charge (dipole moment)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1545 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1545 ], + ns1:operation_0250 . -:operation_0388 a owl:Class ; +ns1:operation_0388 a owl:Class ; rdfs:label "Protein binding site prediction (from structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2575 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2575 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0390 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0246 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Decompose a structure into compact or globular fragments (protein peeling)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0246 . -:operation_0392 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure." ; + ns2:hasExactSynonym "Protein contact map calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1547 ], - :operation_0391 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1547 ], + ns1:operation_0391 . -:operation_0395 a owl:Class ; +ns1:operation_0395 a owl:Class ; rdfs:label "Residue non-canonical interaction detection" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :operation_0249 ; - oboInOwl:hasDefinition "Calculate non-canonical atomic interactions in protein structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:operation_0249 ; + ns2:hasDefinition "Calculate non-canonical atomic interactions in protein structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0396 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a Ramachandran plot of a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1544 ], - :operation_0249 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1544 ], + ns1:operation_0249 . -:operation_0397 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_1844 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_1844 ; + ns2:hasDefinition "Validate a Ramachandran plot of a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_1844 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0399 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict extinction coefficients or optical density of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1531 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1531 ], + ns1:operation_0250 . -:operation_0401 a owl:Class ; +ns1:operation_0401 a owl:Class ; rdfs:label "Protein hydropathy calculation (from sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Hydropathy calculation on a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2574 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Hydropathy calculation on a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2574 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0402 a owl:Class ; +ns1:operation_0402 a owl:Class ; rdfs:label "Protein titration curve plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Plot a protein titration curve." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Plot a protein titration curve." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1527 ], - :operation_0337, - :operation_0400 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1527 ], + ns1:operation_0337, + ns1:operation_0400 . -:operation_0403 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate isoelectric point of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1528 ], - :operation_0400 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1528 ], + ns1:operation_0400 . -:operation_0404 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Estimate hydrogen exchange rate of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1530 ], - :operation_0400 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1530 ], + ns1:operation_0400 . -:operation_0405 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2574 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate hydrophobic or hydrophilic / charged regions of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2574 . -:operation_0406 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1521 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1521 ], + ns1:operation_2574 . -:operation_0407 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1520 ], + ns1:operation_0564, + ns1:operation_2574 . -:operation_0408 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1526 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1526 ], + ns1:operation_2574 . -:operation_0409 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the solubility or atomic solvation energy of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1524 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1524 ], + ns1:operation_2574 . -:operation_0410 a owl:Class ; +ns1:operation_0410 a owl:Class ; rdfs:label "Protein crystallizability prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict crystallizability of a protein sequence." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict crystallizability of a protein sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1525 ], - :operation_2574 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1525 ], + ns1:operation_2574 . -:operation_0411 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0418 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "(jison)Too fine-grained." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0418 ; + ns2:hasDefinition "Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0418 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0412 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0418 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "(jison)Too fine-grained." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0418 ; + ns2:hasDefinition "Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0418 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0413 a owl:Class ; +ns1:operation_0413 a owl:Class ; rdfs:label "MHC peptide immunogenicity prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0414 a owl:Class ; +ns1:operation_0414 a owl:Class ; rdfs:label "Protein feature prediction (from sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_3092 ; + ns2:hasDefinition "Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure." ; + ns2:inSubset ns4: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 ; +ns1:operation_0417 a owl:Class ; rdfs:label "PTM site prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict post-translation modification sites in protein sequences." ; - oboInOwl:hasExactSynonym "PTM analysis", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict post-translation modification sites in protein sequences." ; + ns2:hasExactSynonym "PTM analysis", "PTM prediction", "PTM site analysis", "Post-translation modification site prediction", "Post-translational modification analysis", "Post-translational modification site prediction", "Protein post-translation modification site prediction" ; - oboInOwl:hasNarrowSynonym "Acetylation prediction", + ns2:hasNarrowSynonym "Acetylation prediction", "Acetylation site prediction", "Dephosphorylation prediction", "Dephosphorylation site prediction", @@ -18584,1701 +18584,1701 @@ experiments employing a combination of technologies.""" ; "Tyrosine nitration site prediction", "Ubiquitination prediction", "Ubiquitination site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0601 ], + ns1:operation_3092 . -:operation_0419 a owl:Class ; +ns1:operation_0419 a owl:Class ; rdfs:label "Protein binding site prediction (from sequence)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Predict catalytic residues, active sites or other ligand-binding sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2575 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Predict catalytic residues, active sites or other ligand-binding sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2575 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0421 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2415 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:operation_2415 ; + ns2:hasDefinition "Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2415 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0422 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect or predict cleavage sites (enzymatic or chemical) in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:operation_3092 . -:operation_0423 a owl:Class ; +ns1:operation_0423 a owl:Class ; rdfs:label "Epitope mapping (MHC Class I)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Predict epitopes that bind to MHC class I molecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0416 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Predict epitopes that bind to MHC class I molecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0416 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0424 a owl:Class ; +ns1:operation_0424 a owl:Class ; rdfs:label "Epitope mapping (MHC Class II)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Predict epitopes that bind to MHC class II molecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0416 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Predict epitopes that bind to MHC class II molecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0416 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0425 a owl:Class ; +ns1:operation_0425 a owl:Class ; rdfs:label "Whole gene prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_2454 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2454 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0426 a owl:Class ; +ns1:operation_0426 a owl:Class ; rdfs:label "Gene component prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2454 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_0427 a owl:Class ; rdfs:label "Transposon prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Detect or predict transposons, retrotransposons / retrotransposition signatures etc." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect or predict transposons, retrotransposons / retrotransposition signatures etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0428 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect polyA signals in nucleotide sequences." ; + ns2:hasExactSynonym "PolyA detection", "PolyA prediction", "PolyA signal prediction", "Polyadenylation signal detection", "Polyadenylation signal prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0429 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect quadruplex-forming motifs in nucleotide sequences." ; + ns2:hasExactSynonym "Quadruplex structure prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3128 ], + ns1:operation_0415 . -:operation_0430 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find CpG rich regions in a nucleotide sequence or isochores in genome sequences." ; + ns2:hasExactSynonym "CpG island and isochores detection", "CpG island and isochores rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], + ns1:operation_0415 . -:operation_0433 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify, predict or analyse splice sites in nucleotide sequences." ; + ns2:hasExactSynonym "Splice prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_2499 . -:operation_0434 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2454 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2454 ; + ns2:hasDefinition "Predict whole gene structure using a combination of multiple methods to achieve better predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2454 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0435 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2454 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find operons (operators, promoters and genes) in bacteria genes." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2454 . -:operation_0437 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict selenocysteine insertion sequence (SECIS) in a DNA sequence." ; + ns2:hasExactSynonym "Selenocysteine insertion sequence (SECIS) prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0916 ], + ns1:operation_2454 . -:operation_0439 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict translation initiation sites, possibly by searching a database of sites." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0108 ], - :operation_0436 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0108 ], + ns1:operation_0436 . -:operation_0442 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0441 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0438 ; + ns2:hasDefinition "Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0441 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0444 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences." ; + ns2:hasExactSynonym "MAR/SAR prediction", "Matrix/scaffold attachment site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0438 . -:operation_0445 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0440 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict transcription factor binding sites in DNA sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0440 . -:operation_0446 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict exonic splicing enhancers (ESE) in exons." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_0440 . -:operation_0447 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Evaluate molecular sequence alignment accuracy." ; + ns2:hasExactSynonym "Sequence alignment quality evaluation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Evaluation might be purely sequence-based or use structural information." ; - rdfs:subClassOf :operation_0258, - :operation_2428 . + rdfs:subClassOf ns1:operation_0258, + ns1:operation_2428 . -:operation_0448 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence." ; + ns2:hasExactSynonym "Residue conservation analysis" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0258 . -:operation_0449 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse correlations between sites in a molecular sequence alignment." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0258, + ns1:operation_3465 . -:operation_0450 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; + ns2:hasExactSynonym "Chimeric sequence detection" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2478 . -:operation_0451 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment." ; + ns2:hasExactSynonym "Sequence alignment analysis (recombination detection)" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." ; - rdfs:subClassOf :operation_2478 . + rdfs:subClassOf ns1:operation_2478 . -:operation_0452 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify insertion, deletion and duplication events from a sequence alignment." ; + ns2:hasExactSynonym "Indel discovery", "Sequence alignment analysis (indel detection)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." ; - rdfs:subClassOf :operation_3227 . + rdfs:subClassOf ns1:operation_3227 . -:operation_0453 a owl:Class ; +ns1:operation_0453 a owl:Class ; rdfs:label "Nucleosome formation potential prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0432 ; - oboInOwl:hasDefinition "Predict nucleosome formation potential of DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0432 ; + ns2:hasDefinition "Predict nucleosome formation potential of DNA sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0455 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2985 ], - :operation_0262 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2985 ], + ns1:operation_0262 . -:operation_0457 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA stitch profile." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range." ; - rdfs:subClassOf :operation_0456 . + rdfs:subClassOf ns1:operation_0456 . -:operation_0458 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0456 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA melting curve." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0456 . -:operation_0459 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0456 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA probability profile." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0456 . -:operation_0460 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0456 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA temperature profile." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0456 . -:operation_0461 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate curvature and flexibility / stiffness of a nucleotide sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes properties such as." ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0912 ], - :operation_0262 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0912 ], + ns1:operation_0262 . -:operation_0463 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence." ; + ns2:hasExactSynonym "miRNA prediction", "microRNA detection", "microRNA target detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0443 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0443 . -:operation_0464 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict tRNA genes in genomic sequences (tRNA)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0659 ], - :operation_2454 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_2454 . -:operation_0465 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0659 ], - :operation_0443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_0443 . -:operation_0467 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0267 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0267 ; + ns2:hasDefinition "Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0267 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0468 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict helical secondary structure of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267 . -:operation_0469 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict turn structure (for example beta hairpin turns) of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267 . -:operation_0470 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267 . -:operation_0471 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3092 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict cysteine bonding state and disulfide bond partners in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3092 . -:operation_0472 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0269 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Not sustainable to have protein type-specific concepts." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0269 ; + ns2:hasDefinition "Predict G protein-coupled receptors (GPCR)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0269 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0476 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict tertiary structure of protein sequence(s) without homologs of known structure." ; + ns2:hasExactSynonym "de novo structure prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0474 . + rdfs:subClassOf ns1:operation_0474 . -:operation_0479 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model protein backbone conformation." ; + ns2:hasExactSynonym "Protein modelling (backbone)" ; + ns2:hasNarrowSynonym "Design optimization", "Epitope grafting", "Scaffold search", "Scaffold selection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0477 . -:operation_0481 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model loop conformation in protein structures." ; + ns2:hasExactSynonym "Protein loop modelling", "Protein modelling (loops)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0477 . + rdfs:subClassOf ns1:operation_0477 . -:operation_0485 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2870 ], - :operation_2944 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2870 ], + ns1:operation_2944 . -:operation_0486 a owl:Class ; +ns1:operation_0486 a owl:Class ; rdfs:label "Functional mapping" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0282 ; - oboInOwl:hasDefinition "Map the genetic architecture of dynamic complex traits." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0282 ; + ns2:hasDefinition "Map the genetic architecture of dynamic complex traits." ; + ns2:inSubset ns4: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Haplotype inference", "Haplotype map generation", "Haplotype reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1863 ], + ns1:operation_0282 . -:operation_0488 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0927 ], + ns1:operation_0283 . -:operation_0489 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict genetic code from analysis of codon usage data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1598 ], - :operation_0286, - :operation_2423 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1598 ], + ns1:operation_0286, + ns1:operation_2423 . -:operation_0490 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render a representation of a distribution that consists of group of data points plotted on a simple scale." ; + ns2:hasExactSynonym "Categorical plot plotting", "Dotplot plotting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0862 ], + ns1:operation_0288, + ns1:operation_0564 . -:operation_0492 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align more than two molecular sequences." ; + ns2:hasExactSynonym "Multiple alignment" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0292 . -:operation_0493 a owl:Class ; +ns1:operation_0493 a owl:Class ; rdfs:label "Pairwise sequence alignment generation (local)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0491, - :operation_0495 ; - oboInOwl:hasDefinition "Locally align exactly two molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0491, + ns1:operation_0495 ; + ns2:hasDefinition "Locally align exactly two molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Local alignment methods identify regions of local similarity." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0494 a owl:Class ; +ns1:operation_0494 a owl:Class ; rdfs:label "Pairwise sequence alignment generation (global)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0491, - :operation_0496 ; - oboInOwl:hasDefinition "Globally align exactly two molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0491, + ns1:operation_0496 ; + ns2:hasDefinition "Globally align exactly two molecular sequences." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0292 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0292 ; + ns2:hasDefinition "Align two or more molecular sequences with user-defined constraints." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0292 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0498 a owl:Class ; +ns1:operation_0498 a owl:Class ; rdfs:label "Consensus-based sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:hasDefinition "Align two or more molecular sequences using multiple methods to achieve higher quality." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0292 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:hasDefinition "Align two or more molecular sequences using multiple methods to achieve higher quality." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0292 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0499 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree." ; + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:operation_0292 . -:operation_0500 a owl:Class ; +ns1:operation_0500 a owl:Class ; rdfs:label "Secondary structure alignment generation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2928 ; - oboInOwl:hasDefinition "Align molecular secondary structure (represented as a 1D string)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2928 ; + ns2:hasDefinition "Align molecular secondary structure (represented as a 1D string)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0501 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2488 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2488 ; + ns2:hasDefinition "Align protein secondary structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2488 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0502 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align RNA secondary structures." ; + ns2:hasExactSynonym "RNA secondary structure alignment construction", "RNA secondary structure alignment generation", "Secondary structure alignment (RNA)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0881 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0881 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0880 ], - :operation_2439, - :operation_3429 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0880 ], + ns1:operation_2439, + ns1:operation_3429 . -:operation_0505 a owl:Class ; +ns1:operation_0505 a owl:Class ; rdfs:label "Structure alignment (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0295 ; - oboInOwl:hasDefinition "Align protein tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0295 ; + ns2:hasDefinition "Align protein tertiary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0506 a owl:Class ; +ns1:operation_0506 a owl:Class ; rdfs:label "Structure alignment (RNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0295 ; - oboInOwl:hasDefinition "Align RNA tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0295 ; + ns2:hasDefinition "Align RNA tertiary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0507 a owl:Class ; +ns1:operation_0507 a owl:Class ; rdfs:label "Pairwise structure alignment generation (local)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0295, - :operation_0509 ; - oboInOwl:hasDefinition "Locally align (superimpose) exactly two molecular tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0295, + ns1:operation_0509 ; + ns2:hasDefinition "Locally align (superimpose) exactly two molecular tertiary structures." ; + ns2:inSubset ns4: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 ; +ns1:operation_0508 a owl:Class ; rdfs:label "Pairwise structure alignment generation (global)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0295, - :operation_0510 ; - oboInOwl:hasDefinition "Globally align (superimpose) exactly two molecular tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0295, + ns1:operation_0510 ; + ns2:hasDefinition "Globally align (superimpose) exactly two molecular tertiary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "Global alignment methods identify similarity across the entire structures." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0511 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns1:oldParent ns1:operation_0298 ; + ns2:consider ns1:operation_0292, + ns1:operation_0300 ; + ns2:hasDefinition "Align exactly two molecular profiles." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns1:oldParent ns1:operation_0298 ; + ns2:consider ns1:operation_0292, + ns1:operation_0300 ; + ns2:hasDefinition "Align two or more molecular profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0513 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns1:oldParent ns1:operation_0299 ; + ns2:consider ns1:operation_0294, + ns1:operation_0295, + ns1:operation_0503 ; + ns2:hasDefinition "Align exactly two molecular Structural (3D) profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0514 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns1:oldParent ns1:operation_0299 ; + ns2:consider ns1:operation_0294, + ns1:operation_0295, + ns1:operation_0504 ; + ns2:hasDefinition "Align two or more molecular 3D profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0515 a owl:Class ; +ns1:operation_0515 a owl:Class ; rdfs:label "Data retrieval (tool metadata)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0516 a owl:Class ; +ns1:operation_0516 a owl:Class ; rdfs:label "Data retrieval (database metadata)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0517 a owl:Class ; +ns1:operation_0517 a owl:Class ; rdfs:label "PCR primer design (for large scale sequencing)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for large scale sequencing." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for large scale sequencing." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0518 a owl:Class ; +ns1:operation_0518 a owl:Class ; rdfs:label "PCR primer design (for genotyping polymorphisms)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0519 a owl:Class ; +ns1:operation_0519 a owl:Class ; rdfs:label "PCR primer design (for gene transcription profiling)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for gene transcription profiling." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for gene transcription profiling." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0520 a owl:Class ; +ns1:operation_0520 a owl:Class ; rdfs:label "PCR primer design (for conserved primers)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers that are conserved across multiple genomes or species." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers that are conserved across multiple genomes or species." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0521 a owl:Class ; +ns1:operation_0521 a owl:Class ; rdfs:label "PCR primer design (based on gene structure)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers based on gene structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers based on gene structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0522 a owl:Class ; +ns1:operation_0522 a owl:Class ; rdfs:label "PCR primer design (for methylation PCRs)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Predict primers for methylation PCRs." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0308 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Predict primers for methylation PCRs." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0308 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0526 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence assembly for EST sequences (transcribed mRNA)." ; + ns2:hasExactSynonym "Sequence assembly (EST assembly)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0310 . -:operation_0527 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data." ; + ns2:hasExactSynonym "Tag to gene assignment" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0226, + ns1:operation_2520 . -:operation_0528 a owl:Class ; +ns1:operation_0528 a owl:Class ; rdfs:label "SAGE data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) serial analysis of gene expression (SAGE) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) serial analysis of gene expression (SAGE) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0529 a owl:Class ; +ns1:operation_0529 a owl:Class ; rdfs:label "MPSS data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) massively parallel signature sequencing (MPSS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) massively parallel signature sequencing (MPSS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0530 a owl:Class ; +ns1:operation_0530 a owl:Class ; rdfs:label "SBS data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) sequencing by synthesis (SBS) data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) sequencing by synthesis (SBS) data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0531 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a heat map of expression data from e.g. microarray data." ; + ns2:hasExactSynonym "Heat map construction", "Heatmap generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1636 ], + ns1:operation_0571, + ns1:operation_3429 . -:operation_0532 a owl:Class ; +ns1:operation_0532 a owl:Class ; rdfs:label "Gene expression profile analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse one or more gene expression profiles, typically to interpret them in functional terms." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse one or more gene expression profiles, typically to interpret them in functional terms." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0533 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway." ; + ns2:hasExactSynonym "Pathway mapping" ; + ns2:hasNarrowSynonym "Gene expression profile pathway mapping", "Gene to pathway mapping", "Gene-to-pathway mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2984 ], - :operation_2429, - :operation_2495, - :operation_3928 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2984 ], + ns1:operation_2429, + ns1:operation_2495, + ns1:operation_3928 . -:operation_0534 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0319 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0319 ; + ns2:hasDefinition "Assign secondary structure from protein coordinate data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0319 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0535 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0319 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0319 ; + ns2:hasDefinition "Assign secondary structure from circular dichroism (CD) spectroscopic data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0319 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0536 a owl:Class ; +ns1:operation_0536 a owl:Class ; rdfs:label "Protein structure assignment (from X-ray crystallographic data)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0320 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0320 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0537 a owl:Class ; +ns1:operation_0537 a owl:Class ; rdfs:label "Protein structure assignment (from NMR data)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0320 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0320 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0540 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree construction from molecular sequences." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from molecular sequences)", "Phylogenetic tree generation (from molecular sequences)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0538, + ns1:operation_2403 . -:operation_0541 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree construction from continuous quantitative character data." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from continuous quantitative characters)", "Phylogenetic tree generation (from continuous quantitative characters)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1426 ], - :operation_0538 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1426 ], + ns1:operation_0538 . -:operation_0542 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic tree construction from gene frequency data." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from gene frequencies)", "Phylogenetic tree generation (from gene frequencies)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2873 ], - :operation_0538 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2873 ], + ns1:operation_0538 . -:operation_0543 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic tree construction (from polymorphism data)", "Phylogenetic tree generation (from polymorphism data)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0199 ], - :operation_0538 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], + ns1:operation_0538 . -:operation_0544 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison." ; + ns2:hasExactSynonym "Phylogenetic species tree construction", "Phylogenetic species tree generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0323 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0323 . -:operation_0545 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic tree construction (parsimony methods)", "Phylogenetic tree generation (parsimony methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes evolutionary parsimony (invariants) methods." ; - rdfs:subClassOf :operation_0539 . + rdfs:subClassOf ns1:operation_0539 . -:operation_0546 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances." ; + ns2:hasExactSynonym "Phylogenetic tree construction (minimum distance methods)", "Phylogenetic tree generation (minimum distance methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes neighbor joining (NJ) clustering method." ; - rdfs:subClassOf :operation_0539 . + rdfs:subClassOf ns1:operation_0539 . -:operation_0547 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution." ; + ns2:hasExactSynonym "Phylogenetic tree construction (maximum likelihood and Bayesian methods)", "Phylogenetic tree generation (maximum likelihood and Bayesian methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0539 . -:operation_0548 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely." ; + ns2:hasExactSynonym "Phylogenetic tree construction (quartet methods)", "Phylogenetic tree generation (quartet methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0539 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0539 . -:operation_0549 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms." ; + ns2:hasExactSynonym "Phylogenetic tree construction (AI methods)", "Phylogenetic tree generation (AI methods)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0539 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0539 . -:operation_0550 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1439 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment." ; + ns2:hasExactSynonym "Nucleotide substitution modelling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], - :operation_0286, - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1439 ], + ns1:operation_0286, + ns1:operation_2426 . -:operation_0551 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0324 . - -:operation_0552 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the shape (topology) of a phylogenetic tree." ; + ns2:hasExactSynonym "Phylogenetic tree analysis (shape)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0324 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0324, - :operation_2428 . - -:operation_0553 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0324, + ns1:operation_2428 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic tree analysis (gene family prediction)" ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_0916 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0194 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0194 ], - :operation_0323 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0916 ], + ns1:operation_0323 . -:operation_0554 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:hasExactSynonym "Phylogenetic tree analysis (natural selection)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0324 . -:operation_0555 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees to produce a consensus tree." ; + ns2:hasExactSynonym "Phylogenetic tree construction (consensus)", "Phylogenetic tree generation (consensus)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods typically test for topological similarity between trees using for example a congruence index." ; - rdfs:subClassOf :operation_0323, - :operation_0325 . + rdfs:subClassOf ns1:operation_0323, + ns1:operation_0325 . -:operation_0556 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees to detect subtrees or supertrees." ; + ns2:hasExactSynonym "Phylogenetic sub/super tree detection" ; + ns2:hasNarrowSynonym "Subtree construction", "Supertree construction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0325 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0325 . -:operation_0557 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees to calculate distances between trees." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1442 ], - :operation_0325 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1442 ], + ns1:operation_0325 . -:operation_0558 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotate a phylogenetic tree with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso "http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation" ; - rdfs:subClassOf :operation_0226 . + rdfs:subClassOf ns1:operation_0226 . -:operation_0559 a owl:Class ; +ns1:operation_0559 a owl:Class ; rdfs:label "Immunogenicity prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Predict and optimise peptide ligands that elicit an immunological response." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Predict and optimise peptide ligands that elicit an immunological response." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0560 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict or optimise DNA to elicit (via DNA vaccination) an immunological response." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0804 ], - :operation_3095 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], + ns1:operation_3095 . -:operation_0561 a owl:Class ; +ns1:operation_0561 a owl:Class ; rdfs:label "Sequence formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Reformat (a file or other report of) molecular sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Reformat (a file or other report of) molecular sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0562 a owl:Class ; +ns1:operation_0562 a owl:Class ; rdfs:label "Sequence alignment formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Reformat (a file or other report of) molecular sequence alignment(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Reformat (a file or other report of) molecular sequence alignment(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0563 a owl:Class ; +ns1:operation_0563 a owl:Class ; rdfs:label "Codon usage table formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Reformat a codon usage table." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Reformat a codon usage table." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0565 a owl:Class ; +ns1:operation_0565 a owl:Class ; rdfs:label "Sequence alignment visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "Visualise, format or print a molecular sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0564 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "Visualise, format or print a molecular sequence alignment." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0564 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0566 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise, format or render sequence clusters." ; + ns2:hasExactSynonym "Sequence cluster rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1235 ], - :operation_0337 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1235 ], + ns1:operation_0337 . -:operation_0567 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0872 ], - :operation_0324, - :operation_0337 . - -:operation_0568 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render or visualise a phylogenetic tree." ; + ns2:hasExactSynonym "Phylogenetic tree rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0872 ], + ns1:operation_0324, + ns1:operation_0337 . + +ns1:operation_0568 a owl:Class ; rdfs:label "RNA secondary structure visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "Visualise RNA secondary structure, knots, pseudoknots etc." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0570 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "Visualise RNA secondary structure, knots, pseudoknots etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0570 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0569 a owl:Class ; +ns1:operation_0569 a owl:Class ; rdfs:label "Protein secondary structure visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.15" ; - oboInOwl:hasDefinition "Render and visualise protein secondary structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0570 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.15" ; + ns2:hasDefinition "Render and visualise protein secondary structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0570 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0572 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3925 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_3083 ; + ns2:hasDefinition "Identify and analyse networks of protein interactions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3925 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0574 a owl:Class ; +ns1:operation_0574 a owl:Class ; rdfs:label "Sequence motif rendering" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0564 ; - oboInOwl:hasDefinition "Render a sequence with motifs." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0564 ; + ns2:hasDefinition "Render a sequence with motifs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0577 a owl:Class ; +ns1:operation_0577 a owl:Class ; rdfs:label "DNA linear map rendering" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0573 ; - oboInOwl:hasDefinition "Draw a linear maps of DNA." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0573 ; + ns2:hasDefinition "Draw a linear maps of DNA." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0578 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0573 . - -:operation_0579 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "DNA circular map rendering" ; + ns2:hasDefinition "Draw a circular maps of DNA, for example a plasmid map." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0573 . + +ns1:operation_0579 a owl:Class ; rdfs:label "Operon drawing" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Visualise operon structure etc." ; - oboInOwl:hasExactSynonym "Operon rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise operon structure etc." ; + ns2:hasExactSynonym "Operon rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], - :operation_0573 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_0573 . -:operation_1768 a owl:Class ; +ns1:operation_1768 a owl:Class ; rdfs:label "Nucleic acid folding family identification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0483 ; - oboInOwl:hasDefinition "Identify folding families of related RNAs." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0483 ; + ns2:hasDefinition "Identify folding families of related RNAs." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1769 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0279 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.20" ; + ns1:oldParent ns1:operation_0279 ; + ns2:hasDefinition "Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0279 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1774 a owl:Class ; +ns1:operation_1774 a owl:Class ; rdfs:label "Annotation retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve existing annotation (or documentation), typically annotation on a database entity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve existing annotation (or documentation), typically annotation on a database entity." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the functional properties of two or more proteins." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_1777, - :operation_2997 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_1777, + ns1:operation_2997 . -:operation_1780 a owl:Class ; +ns1:operation_1780 a owl:Class ; rdfs:label "Sequence submission" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_3431 ; - oboInOwl:hasDefinition "Submit a molecular sequence to a database." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_3431 ; + ns2:hasDefinition "Submit a molecular sequence to a database." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1812 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:UploadPDB" ; + ns2:hasDefinition "Parse, prepare or load a user-specified data file so that it is available for use." ; + ns2:hasExactSynonym "Data loading", "Loading" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0842 ], - :operation_2409 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0842 ], + ns1:operation_2409 . -:operation_1813 a owl:Class ; +ns1:operation_1813 a owl:Class ; rdfs:label "Sequence retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a sequence data resource (typically a database) and retrieve sequences and / or annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a sequence data resource (typically a database) and retrieve sequences and / or annotation." ; + ns2:inSubset ns4: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 ; +ns1:operation_1814 a owl:Class ; rdfs:label "Structure retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDbXref "WHATIF:DownloadPDB", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2: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 edam:obsolete ; + ns2:hasDefinition "Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:GetSurfaceDots" ; + ns2:hasDefinition "Calculate the positions of dots that are homogeneously distributed over the surface of a molecule." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "A dot has three coordinates (x,y,z) and (typically) a color." ; - rdfs:subClassOf :operation_0570, - :operation_3351 . + rdfs:subClassOf ns1:operation_0570, + ns1:operation_3351 . -:operation_1817 a owl:Class ; +ns1:operation_1817 a owl:Class ; rdfs:label "Protein atom surface calculation (accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each atom in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each atom in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:comment "Waters are not considered." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1818 a owl:Class ; +ns1:operation_1818 a owl:Class ; rdfs:label "Protein atom surface calculation (accessible molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:comment "Waters are not considered." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1819 a owl:Class ; +ns1:operation_1819 a owl:Class ; rdfs:label "Protein residue surface calculation (accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each residue in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each residue in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1820 a owl:Class ; rdfs:label "Protein residue surface calculation (vacuum accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1821 a owl:Class ; rdfs:label "Protein residue surface calculation (accessible molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1822 a owl:Class ; rdfs:label "Protein residue surface calculation (vacuum molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1823 a owl:Class ; rdfs:label "Protein surface calculation (accessible molecular)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1824 a owl:Class ; +ns1:operation_1824 a owl:Class ; rdfs:label "Protein surface calculation (accessible)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for a structure as a whole." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility ('accessible surface') for a structure as a whole." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1825 a owl:Class ; +ns1:operation_1825 a owl:Class ; rdfs:label "Backbone torsion angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate for each residue in a protein structure all its backbone torsion angles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate for each residue in a protein structure all its backbone torsion angles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0249 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1826 a owl:Class ; +ns1:operation_1826 a owl:Class ; rdfs:label "Full torsion angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate for each residue in a protein structure all its torsion angles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate for each residue in a protein structure all its torsion angles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0249 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1827 a owl:Class ; +ns1:operation_1827 a owl:Class ; rdfs:label "Cysteine torsion angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate for each cysteine (bridge) all its torsion angles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate for each cysteine (bridge) all its torsion angles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0249 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1828 a owl:Class ; +ns1:operation_1828 a owl:Class ; rdfs:label "Tau angle calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "For each amino acid in a protein structure calculate the backbone angle tau." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0249 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "For each amino acid in a protein structure calculate the backbone angle tau." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_1850 . - -:operation_1830 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowCysteineBridge" ; + ns2:hasDefinition "Detect cysteine bridges (from coordinate data) in a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_1850 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowCysteineFree" ; + ns2:hasDefinition "Detect free cysteines in a protein structure." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_1850 . -:operation_1831 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0248, - :operation_1850 . - -:operation_1832 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowCysteineMetal" ; + ns2:hasDefinition "Detect cysteines that are bound to metal in a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0248, + ns1:operation_1850 . + +ns1:operation_1832 a owl:Class ; rdfs:label "Residue contact calculation (residue-nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate protein residue contacts with nucleic acids in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate protein residue contacts with nucleic acids in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1834 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0248 . - -:operation_1835 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate protein residue contacts with metal in a structure." ; + ns2:hasExactSynonym "Residue-metal contact calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0248 . + +ns1:operation_1835 a owl:Class ; rdfs:label "Residue contact calculation (residue-negative ion)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate ion contacts in a structure (all ions for all side chain atoms)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate ion contacts in a structure (all ions for all side chain atoms)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1836 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0321 . - -:operation_1837 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:ShowBumps" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0321 . + +ns1:operation_1837 a owl:Class ; rdfs:label "Residue symmetry contact calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDbXref "WHATIF:SymmetryContact" ; - oboInOwl:hasDefinition "Calculate the number of symmetry contacts made by residues in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF:SymmetryContact" ; + ns2:hasDefinition "Calculate the number of symmetry contacts made by residues in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1838 a owl:Class ; rdfs:label "Residue contact calculation (residue-ligand)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate contacts between residues and ligands in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate contacts between residues and ligands in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1839 a owl:Class ; +ns1:operation_1839 a owl:Class ; rdfs:label "Salt bridge calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:HasSaltBridge", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:HasSaltBridge", "WHATIF:HasSaltBridgePlus", "WHATIF:ShowSaltBridges", "WHATIF:ShowSaltBridgesH" ; - oboInOwl:hasDefinition "Calculate (and possibly score) salt bridges in a protein structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasDefinition "Calculate (and possibly score) salt bridges in a protein structure." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0248 . -:operation_1841 a owl:Class ; +ns1:operation_1841 a owl:Class ; rdfs:label "Rotamer likelihood prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDbXref "WHATIF:ShowLikelyRotamers", + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF:ShowLikelyRotamers", "WHATIF:ShowLikelyRotamers100", "WHATIF:ShowLikelyRotamers200", "WHATIF:ShowLikelyRotamers300", @@ -20288,3138 +20288,3138 @@ experiments employing a combination of technologies.""" ; "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 edam:obsolete ; - oboInOwl:replacedBy :operation_0480 ; + ns2:hasDefinition "Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1842 a owl:Class ; rdfs:label "Proline mutation value calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :operation_0331 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF:ProlineMutationValue" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0331 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1843 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0321 . - -:operation_1845 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PackingQuality" ; + ns2:hasDefinition "Identify poorly packed residues in protein structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0321 . + +ns1:operation_1845 a owl:Class ; rdfs:label "PDB file sequence retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: PDB_sequence" ; - oboInOwl:hasDefinition "Extract a molecular sequence from a PDB file." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2422 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: PDB_sequence" ; + ns2:hasDefinition "Extract a molecular sequence from a PDB file." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2422 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1846 a owl:Class ; +ns1:operation_1846 a owl:Class ; rdfs:label "HET group detection" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify HET groups in PDB files." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify HET groups in PDB files." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_1847 a owl:Class ; rdfs:label "DSSP secondary structure assignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0319 ; - oboInOwl:hasDefinition "Determine for residue the DSSP determined secondary structure in three-state (HSC)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0319 ; + ns2:hasDefinition "Determine for residue the DSSP determined secondary structure in three-state (HSC)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1848 a owl:Class ; +ns1:operation_1848 a owl:Class ; rdfs:label "Structure formatting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDbXref "WHATIF: PDBasXML" ; - oboInOwl:hasDefinition "Reformat (a file or other report of) tertiary structure data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0335 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDbXref "WHATIF: PDBasXML" ; + ns2:hasDefinition "Reformat (a file or other report of) tertiary structure data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0335 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1913 a owl:Class ; +ns1:operation_1913 a owl:Class ; rdfs:label "Residue validation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify poor quality amino acid positions in protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0321 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify poor quality amino acid positions in protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0321 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_1914 a owl:Class ; +ns1:operation_1914 a owl:Class ; rdfs:label "Structure retrieval (water)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDbXref "WHATIF:MovedWaterPDB" ; - oboInOwl:hasDefinition "Query a tertiary structure database and retrieve water molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDbXref "WHATIF:MovedWaterPDB" ; + ns2:hasDefinition "Query a tertiary structure database and retrieve water molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2008 a owl:Class ; +ns1:operation_2008 a owl:Class ; rdfs:label "siRNA duplex prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identify or predict siRNA duplexes in RNA." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict siRNA duplexes in RNA." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0659 ], - :operation_0443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_0443 . -:operation_2089 a owl:Class ; +ns1:operation_2089 a owl:Class ; rdfs:label "Sequence alignment refinement" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Refine an existing sequence alignment." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0258, - :operation_2425 . - -:operation_2120 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Refine an existing sequence alignment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0258, + ns1:operation_2425 . + +ns1:operation_2120 a owl:Class ; rdfs:label "Listfile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2409 ; - oboInOwl:hasDefinition "Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2409 ; + ns2:hasDefinition "Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2121 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231, - :operation_2403 . - -:operation_2122 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231, + ns1:operation_2403 . + +ns1:operation_2122 a owl:Class ; rdfs:label "Sequence alignment file processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2409 ; + ns2:hasDefinition "Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2123 a owl:Class ; +ns1:operation_2123 a owl:Class ; rdfs:label "Small molecule data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) physicochemical property data for small molecules." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) physicochemical property data for small molecules." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2222 a owl:Class ; +ns1:operation_2222 a owl:Class ; rdfs:label "Data retrieval (ontology annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Search and retrieve documentation on a bioinformatics ontology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Search and retrieve documentation on a bioinformatics ontology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2224 a owl:Class ; +ns1:operation_2224 a owl:Class ; rdfs:label "Data retrieval (ontology concept)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query an ontology and retrieve concepts or relations." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query an ontology and retrieve concepts or relations." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2233 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2451 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2451 . -:operation_2234 a owl:Class ; +ns1:operation_2234 a owl:Class ; rdfs:label "Structure file processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2409 ; - oboInOwl:hasDefinition "Perform basic (non-analytical) operations on a file of molecular tertiary structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2409 ; + ns2:hasDefinition "Perform basic (non-analytical) operations on a file of molecular tertiary structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2237 a owl:Class ; +ns1:operation_2237 a owl:Class ; rdfs:label "Data retrieval (sequence profile)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a profile data resource and retrieve one or more profile(s) and / or associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a profile data resource and retrieve one or more profile(s) and / or associated annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data." ; + ns2:hasExactSynonym "3D-1D scoring matrix construction" ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1499 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_0250, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1499 ], + ns1:operation_0250, + ns1:operation_3429 . -:operation_2241 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2992 ], - :operation_0270, - :operation_0570 . - -:operation_2246 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise transmembrane proteins, typically the transmembrane regions within a sequence." ; + ns2:hasExactSynonym "Transmembrane protein rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2992 ], + ns1:operation_0270, + ns1:operation_0570 . + +ns1:operation_2246 a owl:Class ; rdfs:label "Demonstration" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0004 ; - oboInOwl:hasDefinition "An operation performing purely illustrative (pedagogical) purposes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0004 ; + ns2:hasDefinition "An operation performing purely illustrative (pedagogical) purposes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2264 a owl:Class ; +ns1:operation_2264 a owl:Class ; rdfs:label "Data retrieval (pathway or network)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a biological pathways database and retrieve annotation on one or more pathways." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a biological pathways database and retrieve annotation on one or more pathways." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2265 a owl:Class ; +ns1:operation_2265 a owl:Class ; rdfs:label "Data retrieval (identifier)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Query a database and retrieve one or more data identifiers." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Query a database and retrieve one or more data identifiers." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2284 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0236, - :operation_0564 . - -:operation_2405 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a density plot (of base composition) for a nucleotide sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0236, + ns1:operation_0564 . + +ns1:operation_2405 a owl:Class ; rdfs:label "Protein interaction data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2949 ; - oboInOwl:hasDefinition "Process (read and / or write) protein interaction data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2949 ; + ns2:hasDefinition "Process (read and / or write) protein interaction data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2407 a owl:Class ; +ns1:operation_2407 a owl:Class ; rdfs:label "Annotation processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2408 a owl:Class ; +ns1:operation_2408 a owl:Class ; rdfs:label "Sequence feature analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_0253 ; - oboInOwl:hasDefinition "Analyse features in molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_0253 ; + ns2:hasDefinition "Analyse features in molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2410 a owl:Class ; +ns1:operation_2410 a owl:Class ; rdfs:label "Gene expression analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse gene expression and regulation data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse gene expression and regulation data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2411 a owl:Class ; +ns1:operation_2411 a owl:Class ; rdfs:label "Structural profile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0297 ; + ns2:hasDefinition "Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2412 a owl:Class ; +ns1:operation_2412 a owl:Class ; rdfs:label "Data index processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0227 ; - oboInOwl:hasDefinition "Process (read and / or write) an index of (typically a file of) biological data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0227 ; + ns2:hasDefinition "Process (read and / or write) an index of (typically a file of) biological data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2413 a owl:Class ; +ns1:operation_2413 a owl:Class ; rdfs:label "Sequence profile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0296 ; - oboInOwl:hasDefinition "Process (read and / or write) some type of sequence profile." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0296 ; + ns2:hasDefinition "Process (read and / or write) some type of sequence profile." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2414 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_1777 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_2945 ; + ns2:hasDefinition "Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_1777 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2417 a owl:Class ; +ns1:operation_2417 a owl:Class ; rdfs:label "Physicochemical property data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2945 ; - oboInOwl:hasDefinition "Process (read and / or write) data on the physicochemical property of a molecule." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2945 ; + ns2:hasDefinition "Process (read and / or write) data on the physicochemical property of a molecule." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2420 a owl:Class ; +ns1:operation_2420 a owl:Class ; rdfs:label "Operation (typed)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Process (read and / or write) data of a specific type, for example applying analytical methods." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2945 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Process (read and / or write) data of a specific type, for example applying analytical methods." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2945 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2427 a owl:Class ; +ns1:operation_2427 a owl:Class ; rdfs:label "Data handling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "Perform basic operations on some data or a database." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2409 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "Perform basic operations on some data or a database." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2409 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2432 a owl:Class ; +ns1:operation_2432 a owl:Class ; rdfs:label "Microarray data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) microarray data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) microarray data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2433 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0286 ; + ns2:consider ns1:operation_0284, + ns1:operation_0285 ; + ns2:hasDefinition "Process (read and / or write) a codon usage table." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2434 a owl:Class ; +ns1:operation_2434 a owl:Class ; rdfs:label "Data retrieval (codon usage table)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve a codon usage table and / or associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve a codon usage table and / or associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2435 a owl:Class ; +ns1:operation_2435 a owl:Class ; rdfs:label "Gene expression profile processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Process (read and / or write) a gene expression profile." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Process (read and / or write) a gene expression profile." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2438 a owl:Class ; +ns1:operation_2438 a owl:Class ; rdfs:label "Pathway or network processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:consider :operation_3927, - :operation_3928 ; - oboInOwl:hasDefinition "Generate, analyse or handle a biological pathway or network." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Generate, analyse or handle a biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2440 a owl:Class ; +ns1:operation_2440 a owl:Class ; rdfs:label "Structure processing (RNA)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "Process (read and / or write) RNA tertiary structure data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2480 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "Process (read and / or write) RNA tertiary structure data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2480 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2441 a owl:Class ; +ns1:operation_2441 a owl:Class ; rdfs:label "RNA structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict RNA tertiary structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict RNA tertiary structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1465 ], - :operation_0475 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1465 ], + ns1:operation_0475 . -:operation_2442 a owl:Class ; +ns1:operation_2442 a owl:Class ; rdfs:label "DNA structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict DNA tertiary structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict DNA tertiary structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1464 ], - :operation_0475 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1464 ], + ns1:operation_0475 . -:operation_2443 a owl:Class ; +ns1:operation_2443 a owl:Class ; rdfs:label "Phylogenetic tree processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate, process or analyse phylogenetic tree or trees." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0324 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate, process or analyse phylogenetic tree or trees." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0324 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2444 a owl:Class ; +ns1:operation_2444 a owl:Class ; rdfs:label "Protein secondary structure processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2416 ; - oboInOwl:hasDefinition "Process (read and / or write) protein secondary structure data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2416 ; + ns2:hasDefinition "Process (read and / or write) protein secondary structure data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2445 a owl:Class ; +ns1:operation_2445 a owl:Class ; rdfs:label "Protein interaction network processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0276 ; - oboInOwl:hasDefinition "Process (read and / or write) a network of protein interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0276 ; + ns2:hasDefinition "Process (read and / or write) a network of protein interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2446 a owl:Class ; +ns1:operation_2446 a owl:Class ; rdfs:label "Sequence processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2403 ; - oboInOwl:hasDefinition "Process (read and / or write) one or more molecular sequences and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2403 ; + ns2:hasDefinition "Process (read and / or write) one or more molecular sequences and associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2447 a owl:Class ; +ns1:operation_2447 a owl:Class ; rdfs:label "Sequence processing (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) a protein sequence and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2479 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) a protein sequence and associated annotation." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2479 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2448 a owl:Class ; +ns1:operation_2448 a owl:Class ; rdfs:label "Sequence processing (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2478 ; - oboInOwl:hasDefinition "Process (read and / or write) a nucleotide sequence and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2478 ; + ns2:hasDefinition "Process (read and / or write) a nucleotide sequence and associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2452 a owl:Class ; +ns1:operation_2452 a owl:Class ; rdfs:label "Sequence cluster processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0291 ; - oboInOwl:hasDefinition "Process (read and / or write) a sequence cluster." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0291 ; + ns2:hasDefinition "Process (read and / or write) a sequence cluster." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2453 a owl:Class ; +ns1:operation_2453 a owl:Class ; rdfs:label "Feature table processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2403 ; - oboInOwl:hasDefinition "Process (read and / or write) a sequence feature table." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2403 ; + ns2:hasDefinition "Process (read and / or write) a sequence feature table." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2456 a owl:Class ; +ns1:operation_2456 a owl:Class ; rdfs:label "GPCR classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - oboInOwl:hasDefinition "Classify G-protein coupled receptors (GPCRs) into families and subfamilies." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2995 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:hasDefinition "Classify G-protein coupled receptors (GPCRs) into families and subfamilies." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2995 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2457 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Not sustainable to have protein type-specific concepts." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0473 ; + ns2:consider ns1:operation_0269 ; + ns2:hasDefinition "Predict G-protein coupled receptor (GPCR) coupling selectivity." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2459 a owl:Class ; +ns1:operation_2459 a owl:Class ; rdfs:label "Structure processing (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) a protein tertiary structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2406 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) a protein tertiary structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2406 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2460 a owl:Class ; +ns1:operation_2460 a owl:Class ; rdfs:label "Protein atom surface calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility for each atom in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility for each atom in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:comment "Waters are not considered." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2461 a owl:Class ; +ns1:operation_2461 a owl:Class ; rdfs:label "Protein residue surface calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility for each residue in a structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility for each residue in a structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2462 a owl:Class ; +ns1:operation_2462 a owl:Class ; rdfs:label "Protein surface calculation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate the solvent accessibility of a structure as a whole." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0387 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate the solvent accessibility of a structure as a whole." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0387 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2463 a owl:Class ; +ns1:operation_2463 a owl:Class ; rdfs:label "Sequence alignment processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0292 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0292 ; + ns2:hasDefinition "Process (read and / or write) a molecular sequence alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2465 a owl:Class ; +ns1:operation_2465 a owl:Class ; rdfs:label "Structure processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular tertiary structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) a molecular tertiary structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2466 a owl:Class ; +ns1:operation_2466 a owl:Class ; rdfs:label "Map annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0362 ; - oboInOwl:hasDefinition "Annotate a DNA map of some type with terms from a controlled vocabulary." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0362 ; + ns2:hasDefinition "Annotate a DNA map of some type with terms from a controlled vocabulary." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2467 a owl:Class ; +ns1:operation_2467 a owl:Class ; rdfs:label "Data retrieval (protein annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2468 a owl:Class ; +ns1:operation_2468 a owl:Class ; rdfs:label "Data retrieval (phylogenetic tree)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve a phylogenetic tree from a data resource." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve a phylogenetic tree from a data resource." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2469 a owl:Class ; +ns1:operation_2469 a owl:Class ; rdfs:label "Data retrieval (protein interaction annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a protein interaction." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a protein interaction." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2470 a owl:Class ; +ns1:operation_2470 a owl:Class ; rdfs:label "Data retrieval (protein family annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a protein family." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a protein family." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2471 a owl:Class ; +ns1:operation_2471 a owl:Class ; rdfs:label "Data retrieval (RNA family annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on an RNA family." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on an RNA family." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2472 a owl:Class ; +ns1:operation_2472 a owl:Class ; rdfs:label "Data retrieval (gene annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a specific gene." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a specific gene." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2473 a owl:Class ; +ns1:operation_2473 a owl:Class ; rdfs:label "Data retrieval (genotype and phenotype annotation)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2422 ; - oboInOwl:hasDefinition "Retrieve information on a specific genotype or phenotype." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2422 ; + ns2:hasDefinition "Retrieve information on a specific genotype or phenotype." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2474 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0247, - :operation_2997 . - -:operation_2475 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the architecture of two or more protein structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0247, + ns1:operation_2997 . + +ns1:operation_2475 a owl:Class ; rdfs:label "Protein architecture recognition" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identify the architecture of a protein structure." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify the architecture of a protein structure." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0247, + ns1:operation_2423, + ns1:operation_2996 . -:operation_2476 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." ; + ns2:hasExactSynonym "Molecular dynamics simulation" ; + ns2:hasNarrowSynonym "Protein dynamics" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0082 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0176 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0176 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0082 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0883 ], - :operation_2423, - :operation_2426, - :operation_2480 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0883 ], + ns1:operation_2423, + ns1:operation_2426, + ns1:operation_2480 . -:operation_2482 a owl:Class ; +ns1:operation_2482 a owl:Class ; rdfs:label "Secondary structure processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular secondary structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) a molecular secondary structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2485 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render a helical wheel representation of protein secondary structure." ; + ns2:hasExactSynonym "Helical wheel rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2162 ], - :operation_0570 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2162 ], + ns1:operation_0570 . -:operation_2486 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Render a topology diagram of protein secondary structure." ; + ns2:hasExactSynonym "Topology diagram rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2992 ], - :operation_0570 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2992 ], + ns1:operation_0570 . -:operation_2489 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the subcellular localisation of a protein sequence." ; + ns2:hasExactSynonym "Protein cellular localization prediction", "Protein subcellular localisation prediction", "Protein targeting prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0140 ], + ns1:operation_1777 . -:operation_2490 a owl:Class ; +ns1:operation_2490 a owl:Class ; rdfs:label "Residue contact calculation (residue-residue)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Calculate contacts between residues in a protein structure." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2950 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Calculate contacts between residues in a protein structure." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2950 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2491 a owl:Class ; +ns1:operation_2491 a owl:Class ; rdfs:label "Hydrogen bond calculation (inter-residue)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Identify potential hydrogen bonds between amino acid residues." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0394 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Identify potential hydrogen bonds between amino acid residues." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0394 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2492 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the interactions of proteins with other proteins." ; + ns2:hasExactSynonym "Protein-protein interaction detection" ; + ns2:hasNarrowSynonym "Protein-protein binding prediction", "Protein-protein interaction prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], - :operation_2949 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_2949 . -:operation_2493 a owl:Class ; +ns1:operation_2493 a owl:Class ; rdfs:label "Codon usage data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_0286 ; - oboInOwl:hasDefinition "Process (read and / or write) codon usage data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_0286 ; + ns2:hasDefinition "Process (read and / or write) codon usage data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2496 a owl:Class ; +ns1:operation_2496 a owl:Class ; rdfs:label "Gene regulatory network processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) a network of gene regulation." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_1781 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) a network of gene regulation." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_1781 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2498 a owl:Class ; +ns1:operation_2498 a owl:Class ; rdfs:label "Sequencing-based expression profile data analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2500 a owl:Class ; +ns1:operation_2500 a owl:Class ; rdfs:label "Microarray raw data analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :operation_2495 ; - oboInOwl:hasDefinition "Analyse raw microarray data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:operation_2495 ; + ns2:hasDefinition "Analyse raw microarray data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2503 a owl:Class ; +ns1:operation_2503 a owl:Class ; rdfs:label "Sequence data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:hasDefinition "Process (read and / or write) molecular sequence data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2403 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:hasDefinition "Process (read and / or write) molecular sequence data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2403 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2504 a owl:Class ; +ns1:operation_2504 a owl:Class ; rdfs:label "Structural data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2480 ; - oboInOwl:hasDefinition "Process (read and / or write) molecular structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2480 ; + ns2:hasDefinition "Process (read and / or write) molecular structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2505 a owl:Class ; +ns1:operation_2505 a owl:Class ; rdfs:label "Text processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0306, - :operation_3778 ; - oboInOwl:hasDefinition "Process (read and / or write) text." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0306, + ns1:operation_3778 ; + ns2:hasDefinition "Process (read and / or write) text." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2506 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2479 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0258, + ns1:operation_2502, + ns1:operation_3023 ; + ns2:hasDefinition "Analyse a protein sequence alignment, typically to detect features or make predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2479 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2507 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2478 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0258, + ns1:operation_2501, + ns1:operation_3024 ; + ns2:hasDefinition "Analyse a protein sequence alignment, typically to detect features or make predictions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2478 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2508 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2451 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2451, + ns1:operation_2478, + ns1:operation_2998 ; + ns2:hasDefinition "Compare two or more nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2451 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2509 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2451 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2451 ; + ns2:hasDefinition "Compare two or more protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2451 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2510 a owl:Class ; +ns1:operation_2510 a owl:Class ; rdfs:label "DNA back-translation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Back-translate a protein sequence into DNA." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Back-translate a protein sequence into DNA." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0108 ], - :operation_0233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0108 ], + ns1:operation_0233 . -:operation_2511 a owl:Class ; +ns1:operation_2511 a owl:Class ; rdfs:label "Sequence editing (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Edit or change a nucleic acid sequence, either randomly or specifically." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0231 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Edit or change a nucleic acid sequence, either randomly or specifically." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0231 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2512 a owl:Class ; +ns1:operation_2512 a owl:Class ; rdfs:label "Sequence editing (protein)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Edit or change a protein sequence, either randomly or specifically." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0231 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Edit or change a protein sequence, either randomly or specifically." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0231 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2513 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0230 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_0230 ; + ns2:hasDefinition "Generate a nucleic acid sequence by some means." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0230 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2514 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0230 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_0230 ; + ns2:hasDefinition "Generate a protein sequence by some means." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0230 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2515 a owl:Class ; +ns1:operation_2515 a owl:Class ; rdfs:label "Nucleic acid sequence visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Visualise, format or render a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0564 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Visualise, format or render a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_2516 a owl:Class ; rdfs:label "Protein sequence visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Visualise, format or render a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0564 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Visualise, format or render a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_2519 a owl:Class ; rdfs:label "Structure processing (nucleic acid)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:hasDefinition "Process (read and / or write) nucleic acid tertiary structure data." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2480 ; - rdfs:comment :operation_2481 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:hasDefinition "Process (read and / or write) nucleic acid tertiary structure data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2480 ; + rdfs:comment ns1:operation_2481 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2521 a owl:Class ; +ns1:operation_2521 a owl:Class ; rdfs:label "Map data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_2520 ; - oboInOwl:hasDefinition "Process (read and / or write) a DNA map of some type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2520 ; + ns2:hasDefinition "Process (read and / or write) a DNA map of some type." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2844 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3432 . - -:operation_2871 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Build clusters of similar structures, typically using scores from structural alignment methods." ; + ns2:hasExactSynonym "Structural clustering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3432 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS)." ; + ns2:hasExactSynonym "Sequence mapping" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1279 ], + ns1:operation_2944 . -:operation_2931 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_2424 ; + ns2:consider ns1:operation_2487, + ns1:operation_2518 ; + ns2:hasDefinition "Compare two or more molecular secondary structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2932 a owl:Class ; +ns1:operation_2932 a owl:Class ; rdfs:label "Hopp and Woods plotting" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate a Hopp and Woods plot of antigenicity of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0252 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate a Hopp and Woods plot of antigenicity of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0252 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2934 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2938 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0337 ; + ns2:hasDefinition "Generate a view of clustered quantitative data, annotated with textual information." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2938 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2935 a owl:Class ; +ns1:operation_2935 a owl:Class ; rdfs:label "Clustering profile plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis." ; + ns2:hasExactSynonym "Clustered quantitative data plotting", "Clustered quantitative data rendering", "Wave graph plotting" ; - oboInOwl:hasNarrowSynonym "Microarray cluster temporal graph rendering", + ns2:hasNarrowSynonym "Microarray cluster temporal graph rendering", "Microarray wave graph plotting", "Microarray wave graph rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0571 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0571 . -:operation_2936 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2938 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0571 ; + ns2:hasDefinition "Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2938 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2937 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a plot of distances (distance or correlation matrix) between expression values." ; + ns2:hasExactSynonym "Distance map rendering", "Distance matrix plotting", "Distance matrix rendering", "Proximity map rendering" ; - oboInOwl:hasNarrowSynonym "Correlation matrix plotting", + ns2:hasNarrowSynonym "Correlation matrix plotting", "Correlation matrix rendering", "Microarray distance map rendering", "Microarray proximity map plotting", "Microarray proximity map rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0571 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0571 . -:operation_2939 a owl:Class ; +ns1:operation_2939 a owl:Class ; rdfs:label "Principal component visualisation" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Examples for visualization are the distribution of variance over the components, loading and score plots." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Examples for visualization are the distribution of variance over the components, loading and score plots." ; + ns2: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." ; + ns2:hasExactSynonym "PCA plotting", "Principal component plotting" ; - oboInOwl:hasNarrowSynonym "ED visualization", + ns2:hasNarrowSynonym "ED visualization", "Essential Dynamics visualization", "Microarray principal component plotting", "Microarray principal component rendering", "PCA visualization", "Principal modes visualization" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 . + rdfs:subClassOf ns1:operation_0337 . -:operation_2940 a owl:Class ; +ns1:operation_2940 a owl:Class ; rdfs:label "Scatter plot plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Comparison of two sets of quantitative data such as two samples of gene expression values." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Comparison of two sets of quantitative data such as two samples of gene expression values." ; + ns2:hasDefinition "Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation." ; + ns2:hasExactSynonym "Scatter chart plotting" ; + ns2:hasNarrowSynonym "Microarray scatter plot plotting", "Microarray scatter plot rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_2941 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0571 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0571 ; + ns2:hasDefinition "Visualise gene expression data where each band (or line graph) corresponds to a sample." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0571 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2942 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise gene expression data after hierarchical clustering for representing hierarchical relationships." ; + ns2:hasExactSynonym "Expression data tree-map rendering", "Treemapping" ; - oboInOwl:hasNarrowSynonym "Microarray tree-map rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Microarray tree-map rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0571 . + rdfs:subClassOf ns1:operation_0571 . -:operation_2943 a owl:Class ; +ns1:operation_2943 a owl:Class ; rdfs:label "Box-Whisker plot plotting" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - 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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles." ; + ns2:hasExactSynonym "Box plot plotting" ; + ns2:hasNarrowSynonym "Microarray Box-Whisker plot plotting" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0337 . + rdfs:subClassOf ns1:operation_0337 . -:operation_2946 a owl:Class ; +ns1:operation_2946 a owl:Class ; rdfs:label "Alignment analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :operation_2928 ; - oboInOwl:hasDefinition "Process or analyse an alignment of molecular sequences or structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:operation_2928 ; + ns2:hasDefinition "Process or analyse an alignment of molecular sequences or structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2947 a owl:Class ; +ns1:operation_2947 a owl:Class ; rdfs:label "Article analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.16" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.16" ; + ns2:consider ns1:operation_0306, + ns1:operation_3778 ; + ns2:hasDefinition "Analyse a body of scientific text (typically a full text article from a scientific journal.)" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2948 a owl:Class ; +ns1:operation_2948 a owl:Class ; rdfs:label "Molecular interaction analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2949 ; + ns2:hasDefinition "Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2951 a owl:Class ; +ns1:operation_2951 a owl:Class ; rdfs:label "Alignment processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0292, + ns1:operation_0295 ; + ns2:hasDefinition "Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2952 a owl:Class ; +ns1:operation_2952 a owl:Class ; rdfs:label "Structure alignment processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0295 ; - oboInOwl:hasDefinition "Process (read and / or write) a molecular tertiary (3D) structure alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0295 ; + ns2:hasDefinition "Process (read and / or write) a molecular tertiary (3D) structure alignment." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2963 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2962 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.22" ; + ns1:oldParent ns1:operation_2962 ; + ns2:hasDefinition "Generate a codon usage bias plot." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2962 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2964 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1602 ], - :operation_0286 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1602 ], + ns1:operation_0286 . -:operation_2993 a owl:Class ; +ns1:operation_2993 a owl:Class ; rdfs:label "Molecular interaction data processing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :operation_2949 ; - oboInOwl:hasDefinition "Process (read and / or write) molecular interaction data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:operation_2949 ; + ns2:hasDefinition "Process (read and / or write) molecular interaction data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3080 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0883 ], - :operation_3096 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0883 ], + ns1:operation_3096 . -:operation_3084 a owl:Class ; +ns1:operation_3084 a owl:Class ; rdfs:label "Protein function prediction (from sequence)" ; - :created_in "beta13" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_1777 ; - oboInOwl:hasDefinition "Predict general (non-positional) functional properties of a protein from analysing its sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_1777 ; + ns2:hasDefinition "Predict general (non-positional) functional properties of a protein from analysing its sequence." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3092 ; + ns1:created_in "beta13" ; + ns1: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\")." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0253, + ns1:operation_2479, + ns1:operation_3092 ; + ns2:hasDefinition "Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3092 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3088 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0250 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0250, + ns1:operation_2479 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0250 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3090 a owl:Class ; +ns1:operation_3090 a owl:Class ; rdfs:label "Protein feature prediction (from structure)" ; - :created_in "beta13" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_3092 ; - oboInOwl:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein structure." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_3092 ; + ns2:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein structure." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3093 a owl:Class ; +ns1:operation_3093 a owl:Class ; rdfs:label "Database search (by sequence)" ; - :created_in "beta13" ; - :obsolete_since "1.6" ; - 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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_2421 ; + ns2:hasDefinition "Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3180 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Evaluate a DNA sequence assembly, typically for purposes of quality control." ; + ns2:hasExactSynonym "Assembly QC", "Assembly quality evaluation", "Sequence assembly QC", "Sequence assembly quality evaluation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3181 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0925 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0925 ], - :operation_2428, - :operation_3218 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3181 ], + ns1:operation_2428, + ns1:operation_3218 . -:operation_3182 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Align two or more (tpyically huge) molecular sequences that represent genomes." ; + ns2:hasExactSynonym "Genome alignment construction", "Whole genome alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0292, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0292, + ns1:operation_3918 . -:operation_3183 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0310 . + ns1:created_in "1.1" ; + ns2:hasDefinition "Reconstruction of a sequence assembly in a localised area." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0310 . -:operation_3184 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Render and visualise a DNA sequence assembly." ; + ns2:hasExactSynonym "Assembly rendering", "Assembly visualisation", "Sequence assembly rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0564 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0564 . -:operation_3185 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer." ; + ns2:hasExactSynonym "Base calling", "Phred base calling", "Phred base-calling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3168 ], - :operation_0230 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3168 ], + ns1:operation_0230 . -:operation_3186 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome." ; + ns2:hasExactSynonym "Bisulfite read mapping", "Bisulfite sequence alignment", "Bisulfite sequence mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2944, + ns1:operation_3204 . -:operation_3187 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3218 . + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3218 . -:operation_3189 a owl:Class ; +ns1:operation_3189 a owl:Class ; rdfs:label "Trim ends" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove misleading ends." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3192 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove misleading ends." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_3190 a owl:Class ; rdfs:label "Trim vector" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3192 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3192 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3191 a owl:Class ; +ns1:operation_3191 a owl:Class ; rdfs:label "Trim to reference" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3192 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3192 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3194 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Compare the features of two genome sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0256, + ns1:operation_3918 . -:operation_3199 a owl:Class ; +ns1:operation_3199 a owl:Class ; rdfs:label "Split read mapping" ; - :created_in "1.1" ; - oboInOwl:hasDefinition "A varient of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation." ; - oboInOwl:hasExactSynonym "Split-read mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3198 . - -:operation_3200 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "A varient of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation." ; + ns2:hasExactSynonym "Split-read mapping" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3198 . + +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Community profiling", "Sample barcoding" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2478 . + rdfs:subClassOf ns1:operation_2478 . -:operation_3201 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0484 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0484 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0484 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3202 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3227 ; + ns1:created_in "1.1" ; + ns1:deprecation_comment "\"Polymorphism detection\" and \"Variant calling\" are essentially the same thing - keeping the later as a more prevalent term nowadays." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2478, + ns1:operation_3197 ; + ns2:hasDefinition "Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3227 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_3203 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . - -:operation_3205 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Visualise, format or render an image of a Chromatogram." ; + ns2:hasExactSynonym "Chromatogram viewing" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3204 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_3204 ; + ns2:hasDefinition "Determine cytosine methylation status of specific positions in a nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3204 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3206 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Genome methylation analysis", "Global methylation analysis", "Methylation level analysis (global)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204, + ns1:operation_3918 . -:operation_3207 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Analysing the DNA methylation of specific genes or regions of interest." ; + ns2:hasExactSynonym "Gene-specific methylation analysis", "Methylation level analysis (gene-specific)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204 . -:operation_3208 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence." ; + ns2:hasExactSynonym "Genome browser", "Genome browsing", "Genome rendering", "Genome viewing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0564, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0564, + ns1:operation_3918 . -:operation_3209 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2451, - :operation_3918 . - -:operation_3212 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Compare the sequence or features of two or more genomes, for example, to find matching regions." ; + ns2:hasExactSynonym "Genomic region matching" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2451, + ns1:operation_3918 . + +ns1:operation_3212 a owl:Class ; rdfs:label "Genome indexing (Burrows-Wheeler)" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate an index of a genome sequence using the Burrows-Wheeler algorithm." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3211 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate an index of a genome sequence using the Burrows-Wheeler algorithm." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:operation_3213 a owl:Class ; rdfs:label "Genome indexing (suffix arrays)" ; - :created_in "1.1" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Generate an index of a genome sequence using a suffix arrays algorithm." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3211 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Generate an index of a genome sequence using a suffix arrays algorithm." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment." ; + ns2:hasExactSynonym "Peak assignment", "Peak finding" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3217 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3216 . -:operation_3219 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Pre-process sequence reads to ensure (or improve) quality and reliability." ; + ns2:hasExactSynonym "Sequence read pre-processing" ; + ns2:inSubset ns4:edam, + ns4: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 sequnces 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 . + rdfs:subClassOf ns1:operation_3218, + ns1:operation_3921 . -:operation_3221 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3174 ], - :operation_2478 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3174 ], + ns1:operation_2478 . -:operation_3222 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data." ; + ns2:hasExactSynonym "Protein binding peak detection" ; + ns2:hasNarrowSynonym "Peak-pair calling" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0415 . -:operation_3224 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2436 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.21" ; + ns1:oldParent ns1:operation_2495 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2436 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3225 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2995, + ns1:operation_3197 . -:operation_3226 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3229 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0310 . - -:operation_3230 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome." ; + ns2:hasExactSynonym "Exome sequence analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0310 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3921 . + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3921 . -:operation_3232 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Gene expression QTL profiling", "Gene expression quantitative trait loci profiling", "eQTL profiling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495 . -:operation_3233 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Transcript copy number estimation" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3961 . -:operation_3237 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0369 . - -:operation_3258 a owl:Class ; + ns1:created_in "1.2" ; + ns2:hasBroadSynonym "Adapter removal" ; + ns2:hasDefinition "Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0369 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.2" ; + ns2:hasDefinition "Infer a transcriptome sequence by analysis of short sequence reads." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0925 ], - :operation_0310 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0925 ], + ns1:operation_0310 . -:operation_3259 a owl:Class ; +ns1:operation_3259 a owl:Class ; rdfs:label "Transcriptome assembly (de novo)" ; - :created_in "1.2" ; - :obsolete_since "1.6" ; - 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:hasExactSynonym "de novo transcriptome assembly" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.2" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0524 ; + ns2:hasDefinition "Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other." ; + ns2:hasExactSynonym "de novo transcriptome assembly" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3260 a owl:Class ; +ns1:operation_3260 a owl:Class ; rdfs:label "Transcriptome assembly (mapping)" ; - :created_in "1.2" ; - :obsolete_since "1.6" ; - oboInOwl:consider :operation_0523 ; - oboInOwl:hasDefinition "Infer a transcriptome sequence by mapping short reads to a reference genome." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.2" ; + ns1:obsolete_since "1.6" ; + ns2:consider ns1:operation_0523 ; + ns2:hasDefinition "Infer a transcriptome sequence by mapping short reads to a reference genome." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3267 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.3" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2012 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2012 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2012 ], - :operation_3434 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2012 ], + ns1:operation_3434 . -:operation_3278 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3437 . + ns1:created_in "1.3" ; + ns2:hasDefinition "Calculate similarity between 2 or more documents." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3437 . -:operation_3279 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Cluster (group) documents on the basis of their calculated similarity." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3432, - :operation_3437 . + rdfs:subClassOf ns1:operation_3432, + ns1:operation_3437 . -:operation_3280 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents." ; + ns2:hasNarrowSynonym "Concept mining", "Entity chunking", "Entity extraction", "Entity identification", "Event extraction", "NER", "Named-entity recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso , ; - rdfs:subClassOf :operation_3907 . + rdfs:subClassOf ns1:operation_3907 . -:operation_3282 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration." ; + ns2:hasExactSynonym "Accession mapping", "Identifier mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2424, + ns1:operation_2429 . -:operation_3283 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . - -:operation_3289 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Process data in such a way that makes it hard to trace to the person which the data concerns." ; + ns2:hasExactSynonym "Data anonymisation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2422 ; + ns1:created_in "1.3" ; + ns1:deprecation_comment "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0304 ; + ns2:hasDefinition "Search for and retrieve a data identifier of some kind, e.g. a database entry accession." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2422 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3348 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Generate a checksum of a molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3077 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3077 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2044 ], - :operation_3429 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2044 ], + ns1:operation_3429 . -:operation_3349 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Construct a bibliography from the scientific literature." ; + ns2:hasExactSynonym "Bibliography construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3505 ], - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3505 ], + ns1:operation_3429 . -:operation_3350 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2423 . + ns1:created_in "1.4" ; + ns2:hasDefinition "Predict the structure of a multi-subunit protein and particularly how the subunits fit together." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2423 . -:operation_3353 a owl:Class ; +ns1:operation_3353 a owl:Class ; rdfs:label "Ontology comparison" ; - :created_in "1.4" ; - :obsolete_since "1.9" ; - oboInOwl:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_3352 ; + ns1:created_in "1.4" ; + ns1:obsolete_since "1.9" ; + ns2:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3352 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3359 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . - -:operation_3430 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Split a file containing multiple data items into many files, each containing one item" ; + ns2:hasExactSynonym "File splitting" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0415 ; + ns1:created_in "1.6" ; + ns1: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." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_0253, + ns1:operation_0415 ; + ns2:hasDefinition "Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0415 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3433 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0310 ; + ns1:created_in "1.6" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0004 ; + ns2:hasDefinition "Construct some entity (typically a molecule sequence) from component pieces." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0310 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3436 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns1:created_in "1.6" ; + ns2:hasDefinition "Combine multiple files or data items into a single file or object." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3439 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "1.6" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2497 ; + ns2:consider ns1:operation_2437, + ns1:operation_3094, + ns1:operation_3929 ; + ns2:hasDefinition "Predict a molecular pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_3440 a owl:Class ; +ns1:operation_3440 a owl:Class ; rdfs:label "Genome assembly" ; - :created_in "1.6" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_0525 ; + ns1:created_in "1.6" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0525 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3441 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0337 ; + ns1:created_in "1.6" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0337 ; + ns2:hasDefinition "Generate a graph, or other visual representation, of data, showing the relationship between two or more variables." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0337 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3446 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2229 ], - :operation_3443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2229 ], + ns1:operation_3443 . -:operation_3447 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3445 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Processing of diffraction data into a corrected, ordered, and simplified form." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3445 . -:operation_3450 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2229 ], - :operation_3443 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2229 ], + ns1:operation_3443 . -:operation_3453 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment." ; + ns2:hasNarrowSynonym "Diffraction profile fitting", "Diffraction summation integration" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3445 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3445 . -:operation_3454 a owl:Class ; +ns1: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 edam:data, - edam:operations ; - rdfs:subClassOf :operation_3445 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods." ; + ns2:inSubset ns4:data, + ns4:operations ; + rdfs:subClassOf ns1:operation_3445 . -:operation_3455 a owl:Class ; +ns1: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 edam:data, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:operations ; rdfs:comment "The technique solves the phase problem, i.e. retrieve information concern phases of the structure." ; - rdfs:subClassOf :operation_0322 . + rdfs:subClassOf ns1:operation_0322 . -:operation_3456 a owl:Class ; +ns1: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 edam:data, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:operations ; rdfs:comment "Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data." ; - rdfs:subClassOf :operation_0322 . + rdfs:subClassOf ns1:operation_0322 . -:operation_3458 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns1:is_refactor_candidate "true" ; + ns1:refactor_comment "This is two related concepts." ; + ns2:hasDefinition "Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2990, + ns1:operation_3457 . -:operation_3459 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:hasExactSynonym "Functional sequence clustering" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_0291 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_0291 . -:operation_3460 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2995 . - -:operation_3461 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy." ; + ns2:hasExactSynonym "Taxonomy assignment" ; + ns2:hasNarrowSynonym "Taxonomic profiling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2995 . + +ns1: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 edam:data, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3301 ], - :operation_2403, - :operation_2423 . - -:operation_3463 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences." ; + ns2:hasExactSynonym "Pathogenicity prediction" ; + ns2:inSubset ns4:data, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3301 ], + ns1:operation_2403, + ns1:operation_2423 . + +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc." ; + ns2:hasExactSynonym "Co-expression analysis" ; + ns2:hasNarrowSynonym "Gene co-expression network analysis", "Gene expression correlation", "Gene expression correlation analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0315, - :operation_3465 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0315, + ns1:operation_3465 . -:operation_3469 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Compute the covariance model for (a family of) RNA secondary structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :operation_2439, - :operation_3429 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:operation_2439, + ns1:operation_3429 . -:operation_3470 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0278 ; + ns1:created_in "1.7" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0278 ; + ns2:hasDefinition "Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0278 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3471 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0279 ; + ns1:created_in "1.7" ; + ns1:obsolete_since "1.18" ; + ns1:oldParent ns1:operation_0279 ; + ns2:hasDefinition "Prediction of nucleic-acid folding using sequence alignments as a source of data." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0279 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3472 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Count k-mers (substrings of length k) in DNA sequence data." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:operation_0236 . -:operation_3478 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Reconstructing the inner node labels of a phylogenetic tree from its leafes." ; + ns2:hasExactSynonym "Phylogenetic tree reconstruction" ; + ns2:hasNarrowSynonym "Gene tree reconstruction", "Species tree reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:operation_0323 . -:operation_3481 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0230, - :operation_3480 . - -:operation_3482 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Generate sequences from some probabilistic model, e.g. a model that simulates evolution." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0230, + ns1:operation_3480 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Identify or predict causes for antibiotic resistance from molecular sequence analysis." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3301 ], - :operation_2403, - :operation_2423 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3301 ], + ns1:operation_2403, + ns1:operation_2423 . -:operation_3502 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information." ; + ns2:hasExactSynonym "Chemical class enrichment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :operation_3501 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_3501 . -:operation_3503 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns1:created_in "1.8" ; + ns2:hasDefinition "Plot an incident curve such as a survival curve, death curve, mortality curve." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_3504 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Identify and map patterns of genomic variations." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods often utilise a database of aligned reads." ; - rdfs:subClassOf :operation_3197 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3545 a owl:Class ; +ns1:operation_3545 a owl:Class ; rdfs:label "Mathematical modelling" ; - :created_in "1.8" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :operation_2426 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2426 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3552 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.9" ; + ns2:hasDefinition "Visualise images resulting from various types of microscopy." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3382 ], - :operation_0337 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3382 ], + ns1:operation_0337 . -:operation_3553 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0226 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Annotate an image of some sort, typically with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0226 . -:operation_3557 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.9" ; + ns2:hasDefinition "Replace missing data with substituted values, usually by using some statistical or other mathematical approach." ; + ns2:hasExactSynonym "Data imputation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3559 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . - -:operation_3560 a owl:Class ; + ns1:created_in "1.9" ; + ns2:hasDefinition "Visualise, format or render data from an ontology, typically a tree of terms." ; + ns2:hasExactSynonym "Ontology browsing" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . + +ns1:operation_3560 a owl:Class ; rdfs:label "Maximum occurence 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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0321 . + ns1:created_in "1.9" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0321 . -:operation_3561 a owl:Class ; +ns1: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", + ns1:created_in "1.9" ; + ns2: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." ; + ns2:hasNarrowSynonym "Data model comparison", "Schema comparison" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424, - :operation_2429 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424, + ns1:operation_2429 . -:operation_3562 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "1.9" ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2426 ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Simulate the bevaviour of a biological pathway or network." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3680 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Analyze read counts from RNA-seq experiments." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3680 . -:operation_3564 a owl:Class ; +ns1:operation_3564 a owl:Class ; rdfs:label "Chemical redundancy removal" ; - :created_in "1.9" ; - oboInOwl:hasDefinition "Identify and remove redudancy from a set of small molecule structures." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2483 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Identify and remove redudancy from a set of small molecule structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2483 . -:operation_3565 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3680 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Analyze time series data from an RNA-seq experiment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3680 . -:operation_3566 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2426 . + ns1:created_in "1.9" ; + ns2:hasDefinition "Simulate gene expression data, e.g. for purposes of benchmarking." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2426 . -:operation_3625 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Identify semantic relations among entities and concepts within a text, using text mining techniques." ; + ns2:hasExactSynonym "Relation discovery", "Relation inference", "Relationship discovery", "Relationship extraction", "Relationship inference" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0306 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0306 . -:operation_3627 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Re-adjust the output of mass spectrometry experiments with shifted ppm values." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3628 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3629 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point." ; + ns2:hasExactSynonym "Deconvolution" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3632 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Calculate the isotope distribution of a given chemical species." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3438 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3438 . -:operation_3633 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3438 . - -:operation_3636 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species." ; + ns2:hasExactSynonym "Retention time calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3438 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3630 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3630 . -:operation_3637 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3634 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Calculate number of identified MS2 spectra as approximation of peptide / protein quantity." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3634 . -:operation_3638 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using stable isotope labeling by amino acids in cell culture." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3639 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3640 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using labeling based on 18O-enriched H2O." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3641 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3642 a owl:Class ; +ns1:operation_3642 a owl:Class ; rdfs:label "Dimethyl" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Quantification analysis using chemical labeling by stable isotope dimethylation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification analysis using chemical labeling by stable isotope dimethylation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . -:operation_3643 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3631 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3631 . -:operation_3644 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0230, - :operation_3631 . - -:operation_3647 a owl:Class ; + ns1:created_in "1.12" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0230, + ns1:operation_3631 . + +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches." ; + ns2:hasExactSynonym "Modification-tolerant peptide database search", "Unrestricted peptide database search" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3646 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3646 . -:operation_3648 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3649 ; + ns1:created_in "1.12" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2428, + ns1:operation_3646 ; + ns2:hasDefinition "Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3649 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3658 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Analyse data in order to deduce properties of an underlying distribution or population." ; + ns2:hasNarrowSynonym "Empirical Bayes" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3659 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "A statistical calculation to estimate the relationships among variables." ; + ns2:hasNarrowSynonym "Regression" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3660 a owl:Class ; +ns1: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, + ns1:created_in "1.12" ; + ns2: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." ; + ns2:hasExactSynonym ns1:Metabolic%20pathway%20modelling ; + ns2:hasNarrowSynonym ns1:Metabolic%20pathway%20reconstruction, "Metabolic network reconstruction", "Metabolic network simulation", "Metabolic pathway simulation", "Metabolic reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2259 ], + ns1:operation_3927, + ns1:operation_3928 . -:operation_3661 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0361 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Predict the effect or function of an individual single nucleotide polymorphism (SNP)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0361 . -:operation_3662 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Prediction of genes or gene components from first principles, i.e. without reference to existing genes." ; + ns2:hasExactSynonym "Gene prediction (ab-initio)" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2454 . + rdfs:subClassOf ns1:operation_2454 . -:operation_3663 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Prediction of genes or gene components by reference to homologous genes." ; + ns2:hasExactSynonym "Empirical gene finding", "Empirical gene prediction", "Evidence-based gene prediction", "Gene prediction (homology-based)", "Similarity-based gene prediction" ; - oboInOwl:hasNarrowSynonym "Homology prediction", + ns2:hasNarrowSynonym "Homology prediction", "Orthology prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2454 . + rdfs:subClassOf ns1:operation_2454 . -:operation_3664 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3666 a owl:Class ; +ns1:operation_3666 a owl:Class ; rdfs:label "Molecular surface comparison" ; - :created_in "1.12" ; - oboInOwl:hasDefinition "Compare two or more molecular surfaces." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2483, - :operation_3351 . - -:operation_3672 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Compare two or more molecular surfaces." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2483, + ns1:operation_3351 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0361 . - -:operation_3675 a owl:Class ; + ns1:created_in "1.12" ; + ns2: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)." ; + ns2:hasExactSynonym "Sequence functional annotation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0361 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3218 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3218 . -:operation_3677 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_3694 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns1:created_in "1.13" ; + ns2:hasDefinition "Visualise, format or render a mass spectrum." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_3695 a owl:Class ; +ns1: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", + ns1:created_in "1.13" ; + ns2:hasDefinition "Filter a set of files or data items according to some property." ; + ns2:hasNarrowSynonym "Sequence filtering", "rRNA filtering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3703 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3197 . + ns1:created_in "1.14" ; + ns2:hasDefinition "Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3197 . -:operation_3704 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3634 . - -:operation_3705 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Label-free quantification by integration of ion current (ion counting)." ; + ns2:hasExactSynonym "Ion current integration" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3634 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3635 . - -:operation_3715 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Chemical tagging free amino groups of intact proteins with stable isotopes." ; + ns2:hasExactSynonym "ICPL" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3635 . + +ns1: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", + ns1:created_in "1.14" ; + ns2:hasDefinition "Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed." ; + ns2:hasNarrowSynonym "C-13 metabolic labeling", "N-15 metabolic labeling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3635 . -:operation_3730 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0310 . - -:operation_3731 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasDefinition "Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis." ; + ns2:hasExactSynonym "Sequence assembly (cross-assembly)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0310 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "1.15" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3741 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0314, - :operation_2997 . - -:operation_3742 a owl:Class ; + ns1:created_in "1.15" ; + ns2:hasBroadSynonym "Differential protein analysis" ; + ns2:hasDefinition "The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup." ; + ns2:hasExactSynonym "Differential protein expression analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0314, + ns1:operation_2997 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_3223 ; + ns1:created_in "1.15" ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_2424 ; + ns2:hasDefinition "The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_3223 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3744 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0337 . + ns1:created_in "1.15" ; + ns2:hasDefinition "Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0337 . -:operation_3745 a owl:Class ; +ns1: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", + ns1:created_in "1.15" ; + ns2:hasDefinition "The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors." ; + ns2:hasExactSynonym "Ancestral sequence reconstruction", "Character mapping", "Character optimisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms." ; - rdfs:subClassOf :operation_0324 . + rdfs:subClassOf ns1:operation_0324 . -:operation_3755 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "Site localisation of post-translational modifications in peptide or protein mass spectra." ; + ns2:hasExactSynonym "PTM scoring", "Site localisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3645 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3645 . -:operation_3761 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3760 . + ns1:created_in "1.16" ; + ns2:hasDefinition "An operation supporting the browsing or discovery of other tools and services." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3760 . -:operation_3762 a owl:Class ; +ns1: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 funtional unit, for the automation of some task." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3760 . + ns1:created_in "1.16" ; + ns2:hasDefinition "An operation supporting the aggregation of other services (at least two) into a funtional unit, for the automation of some task." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3760 . -:operation_3763 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3760 . + ns1:created_in "1.16" ; + ns2:hasDefinition "An operation supporting the calling (invocation) of other tools and services." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3760 . -:operation_3766 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "A data mining method typically used for studying biological networks based on pairwise correlations between variables." ; + ns2:hasExactSynonym "WGCNA", "Weighted gene co-expression network analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_3927 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:operation_3927 . -:operation_3767 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_2423, - :operation_3214 . - -:operation_3791 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry." ; + ns2:hasExactSynonym "Protein inference" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_2423, + ns1:operation_3214 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.17" ; + ns2:hasDefinition "A method whereby data on several variants are \"collapsed\" into a single covariate based on regions such as genes." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3792 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495 . - -:operation_3793 a owl:Class ; + ns1:created_in "1.17" ; + ns2:hasBroadSynonym "miRNA analysis" ; + ns2:hasDefinition "The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes." ; + ns2:hasExactSynonym "miRNA expression profiling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3921 . + ns1:created_in "1.17" ; + ns2:hasDefinition "Counting and summarising the number of short sequence reads that map to genomic features." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3921 . -:operation_3795 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3095 . + ns1:created_in "1.17" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3095 . -:operation_3797 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.17" ; + ns2: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)." ; + ns2:hasExactSynonym "Species richness assessment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3438 . + rdfs:subClassOf ns1:operation_3438 . -:operation_3798 a owl:Class ; +ns1: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", + ns1:created_in "1.17" ; + ns2:hasDefinition "An operation which groups reads or contigs and assigns them to operational taxonomic units." ; + ns2:hasExactSynonym "Binning", "Binning shotgun reads" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Binning methods use one or a combination of compositional features or sequence similarity." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3921 . + rdfs:subClassOf ns1:operation_3921 . -:operation_3800 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3799 . - -:operation_3801 a owl:Class ; + ns1:created_in "1.17" ; + ns2: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." ; + ns2:hasExactSynonym "RNA-Seq quantitation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3799 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.17" ; + ns2:hasDefinition "Match experimentally measured mass spectrum to a spectrum in a spectral library or database." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3631 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3631 . -:operation_3802 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns1:created_in "1.17" ; + ns2:hasDefinition "Sort a set of files or data items according to some property." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3803 a owl:Class ; +ns1:operation_3803 a owl:Class ; rdfs:label "Natural product identification" ; - :created_in "1.17" ; - oboInOwl:hasBroadSynonym "Metabolite identification" ; - 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", + ns1:created_in "1.17" ; + ns2:hasBroadSynonym "Metabolite identification" ; + ns2:hasDefinition "Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics." ; + ns2:hasNarrowSynonym "De novo metabolite identification", "Fragmenation tree generation", "Metabolite identification" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3214 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3214 . -:operation_3809 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204 . - -:operation_3840 a owl:Class ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Identify and assess specific genes or regulatory regions of interest that are differentially methylated." ; + ns2:hasExactSynonym "Differentially-methylated region identification" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204 . + +ns1:operation_3840 a owl:Class ; rdfs:label "Multilocus sequence typing" ; - :created_in "1.21" ; - oboInOwl:hasDbXref oboOther:OBI_0000435, + ns1:created_in "1.21" ; + ns2:hasDbXref ns3: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 edam:edam, - edam:operations ; + ns2:hasDefinition "Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes." ; + ns2:hasExactSynonym "MLST" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_3196 . + rdfs:subClassOf ns1:operation_3196 . -:operation_3860 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_0250, - :operation_3214 . - -:operation_3890 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Calculate a theoretical mass spectrometry spectra for given sequences." ; + ns2:hasExactSynonym "Spectrum prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_0250, + ns1:operation_3214 . + +ns1:operation_3890 a owl:Class ; rdfs:label "Trajectory visualization" ; - :created_in "1.22" ; - oboInOwl:hasDefinition "3D visualization of a molecular trajectory." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "3D visualization of a molecular trajectory." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2162 ], - :operation_0570 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2162 ], + ns1:operation_0570 . -:operation_3891 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2: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." ; + ns2:hasExactSynonym "ED", "PCA", "Principal modes" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0244, + ns1:operation_2481 . -:operation_3893 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations" ; + ns2:hasExactSynonym "Ligand parameterization", "Molecule parameterization" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1439 ], - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1439 ], + ns1:operation_2426 . -:operation_3894 a owl:Class ; +ns1: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" ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on." ; + ns2:hasExactSynonym "DNA fingerprinting" ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2478 . + rdfs:subClassOf ns1:operation_2478 . -:operation_3896 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction." ; + ns2:hasNarrowSynonym "Active site detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2575 . + rdfs:subClassOf ns1:operation_2575 . -:operation_3897 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2: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." ; + ns2:hasNarrowSynonym "Ligand-binding site detection", "Peptide-protein binding prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2575 . + rdfs:subClassOf ns1:operation_2575 . -:operation_3898 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict or detect metal ion-binding sites in proteins." ; + ns2:hasExactSynonym "Metal-binding site detection", "Protein metal-binding site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2575 . + rdfs:subClassOf ns1:operation_2575 . -:operation_3899 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + ns1:created_in "1.22" ; + ns2:hasDefinition "Model or simulate protein-protein binding using comparative modelling or other techniques." ; + ns2:hasExactSynonym "Protein docking" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1461 ], - :operation_0478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_0478 . -:operation_3900 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict DNA-binding proteins." ; + ns2:hasExactSynonym "DNA-binding protein detection", "DNA-protein interaction prediction", "Protein-DNA interaction prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], - :operation_0389 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_0389 . -:operation_3901 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict RNA-binding proteins." ; + ns2:hasExactSynonym "Protein-RNA interaction prediction", "RNA-binding protein detection", "RNA-protein interaction prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], - :operation_0389 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_0389 . -:operation_3902 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "Predict or detect RNA-binding sites in protein sequences." ; + ns2:hasExactSynonym "Protein-RNA binding site detection", "Protein-RNA binding site prediction", "RNA binding site detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0420 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0420 . -:operation_3903 a owl:Class ; +ns1:operation_3903 a owl:Class ; rdfs:label "DNA binding site prediction" ; - :created_in "1.22" ; - edam:edam "" ; - oboInOwl:hasDefinition "Predict or detect DNA-binding sites in protein sequences." ; - oboInOwl:hasExactSynonym "Protein-DNA binding site detection", + ns1:created_in "1.22" ; + ns4:edam "" ; + ns2:hasDefinition "Predict or detect DNA-binding sites in protein sequences." ; + ns2:hasExactSynonym "Protein-DNA binding site detection", "Protein-DNA binding site prediction" ; - oboInOwl:hasNarrowSynonym "DNA binding site detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0420 . + ns2:hasNarrowSynonym "DNA binding site detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0420 . -:operation_3904 a owl:Class ; +ns1: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:hasExactSynonym "" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Identify or predict intrinsically disordered regions in proteins." ; + ns2:hasExactSynonym "" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3301 ], - :operation_2423, - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3301 ], + ns1:operation_2423, + ns1:operation_3092 . -:operation_3919 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3204 . + ns1:created_in "1.24" ; + ns2:hasDefinition "The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3204 . -:operation_3920 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Genetic testing" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0622 ], + ns1:operation_2478 . -:operation_3923 a owl:Class ; +ns1:operation_3923 a owl:Class ; rdfs:label "Genome resequencing" ; - :created_in "1.24" ; - 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). + ns1:created_in "1.24" ; + ns2: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.). ows re-sequencing of complete genomes of any given organism with high resolution and high accuracy.""" ; - oboInOwl:hasExactSynonym "Resequencing" ; - oboInOwl:hasHumanReadableId "Whole_genome_sequencing" ; - oboInOwl:hasNarrowSynonym "Amplicon panels", + ns2:hasExactSynonym "Resequencing" ; + ns2:hasHumanReadableId "Whole_genome_sequencing" ; + ns2:hasNarrowSynonym "Amplicon panels", "Amplicon sequencing", "Amplicon-based sequencing", "Highly targeted resequencing", @@ -23428,1530 +23428,1530 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Whole genome resequencing" ; 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.", "Ultra-deep sequencing" ; - rdfs:subClassOf :topic_3168 . + rdfs:subClassOf ns1:topic_3168 . -:operation_3931 a owl:Class ; +ns1:operation_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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science." ; + ns2:hasHumanReadableId "Chemometrics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_2258 . + rdfs:subClassOf ns1:topic_2258 . -:operation_3933 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Assigning sequence reads to separate groups / files based on their index tag (sample origin)." ; + ns2:hasExactSynonym "Sequence demultiplexing" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3921 . -:operation_3936 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction." ; + ns2:hasExactSynonym "Attribute selection", "Variable selection", "Variable subset selection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3935 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3935 . -:operation_3937 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Feature projection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3935 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3935 . -:operation_3938 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Ligand-based screening", "Ligand-based virtual screening", "Structure-based screening", "Structured-based virtual screening", "Virtual ligand screening" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1461 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_0482, - :operation_4009 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_0482, + ns1:operation_4009 . -:operation_3939 a owl:Class ; +ns1:operation_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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance." ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3297 . + rdfs:subClassOf ns1:topic_3297 . -:operation_3942 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "The application of phylogenetic and other methods to estimate paleogeographical events such as speciation." ; + ns2:hasExactSynonym "Biogeographic dating", "Speciation dating", "Species tree dating", "Tree-dating" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0324 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0324 . -:operation_3946 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1439 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0084 ], - :operation_0286, - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1439 ], + ns1:operation_0286, + ns1:operation_2426 . -:operation_3947 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Gene tree / species tree reconciliation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods typically test for topological similarity between trees using for example a congruence index." ; - rdfs:subClassOf :operation_0325 . + rdfs:subClassOf ns1:operation_0325 . -:operation_3950 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . + ns1:created_in "1.24" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . -:operation_3960 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.25" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2238 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3962 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify deletion events causing the number of repeats in the genome to vary between individuals." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3963 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify duplication events causing the number of repeats in the genome to vary between individuals." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3964 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3965 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3961 . + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify amplification events causing the number of repeats in the genome to vary between individuals." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3961 . -:operation_3968 a owl:Class ; +ns1:operation_3968 a owl:Class ; rdfs:label "Adhesin prediction" ; - :created_in "1.25" ; - oboInOwl:hasDefinition "Predict adhesins in protein sequences." ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "1.25" ; + ns2:hasDefinition "Predict adhesins in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:topics ; 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 targetted 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], + ns1:operation_2429, + ns1:operation_3092 . -:operation_4008 a owl:Class ; +ns1: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", + ns1:created_in 1.25 ; + ns2:hasDefinition "Design new protein molecules with specific structural or functional properties." ; + ns2:hasNarrowSynonym "Protein redesign", "Rational protein design", "de novo protein design" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2430 . + rdfs:subClassOf ns1:operation_2430 . -:organisation a owl:AnnotationProperty ; +ns1:organisation a owl:AnnotationProperty ; rdfs:label "Organisation" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Organization" ; + ns2:inSubset "concept_properties" . -:refactor_comment a owl:AnnotationProperty ; +ns1:refactor_comment a owl:AnnotationProperty ; rdfs:label "refactor_comment" ; - oboOther:is_metadata_tag "true" ; - oboInOwl:hasDefinition "A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.)" ; - oboInOwl:inSubset "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.)" ; + ns2:inSubset "concept_properties" . -:regex a owl:AnnotationProperty ; +ns1:regex a owl:AnnotationProperty ; rdfs:label "Regular expression" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_properties" . -:repository a owl:AnnotationProperty ; +ns1:repository a owl:AnnotationProperty ; rdfs:label "Repository" ; - oboOther: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", + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Public repository", "Source-code repository" ; - oboInOwl:inSubset "concept_properties" . + ns2:inSubset "concept_properties" . -:thematic_editor a owl:AnnotationProperty ; +ns1:thematic_editor a owl:AnnotationProperty ; rdfs:label "thematic_editor" ; - oboOther: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 "concept_properties" . + ns3:is_metadata_tag "true" ; + ns2:hasDefinition "Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children." ; + ns2:inSubset "concept_properties" . -:topic_0079 a owl:Class ; +ns1:topic_0079 a owl:Class ; rdfs:label "Metabolites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0083 a owl:Class ; +ns1:topic_0083 a owl:Class ; rdfs:label "Alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0080, + ns1:topic_0081 ; + ns2:hasDefinition "The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0085 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc." ; + ns2:hasHumanReadableId "Functional_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622, - :topic_1775 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_1775 . -:topic_0090 a owl:Class ; +ns1:topic_0090 a owl:Class ; rdfs:label "Information retrieval" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3071 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3071 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0094 a owl:Class ; +ns1:topic_0094 a owl:Class ; rdfs:label "Nucleic acid thermodynamics" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "The study of the thermodynamic properties of a nucleic acid." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "The study of the thermodynamic properties of a nucleic acid." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0100 a owl:Class ; +ns1:topic_0100 a owl:Class ; rdfs:label "Nucleic acid restriction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0821 ; - oboInOwl:hasDefinition "Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0821 ; + ns2:hasDefinition "Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0107 a owl:Class ; +ns1:topic_0107 a owl:Class ; rdfs:label "Genetic codes and codon usage" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "The study of codon usage in nucleotide sequence(s), genetic codes and so on." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "The study of codon usage in nucleotide sequence(s), genetic codes and so on." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0109 a owl:Class ; +ns1:topic_0109 a owl:Class ; rdfs:label "Gene finding" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0114 ; - oboInOwl:hasDefinition "Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0114 ; + ns2:hasDefinition "Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences." ; + ns2:inSubset ns4: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 ; +ns1:topic_0110 a owl:Class ; rdfs:label "Transcription" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "The transcription of DNA into mRNA." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "The transcription of DNA into mRNA." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0111 a owl:Class ; +ns1:topic_0111 a owl:Class ; rdfs:label "Promoters" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0749 ; + ns2:hasDefinition "Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0112 a owl:Class ; +ns1:topic_0112 a owl:Class ; rdfs:label "Nucleic acid folding" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "The folding (in 3D space) of nucleic acid molecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0097 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "The folding (in 3D space) of nucleic acid molecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0097 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0122 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The elucidation of the three dimensional structure for all (available) proteins in a given organism." ; + ns2:hasHumanReadableId "Structural_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622, - :topic_1317 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_1317 . -:topic_0133 a owl:Class ; +ns1:topic_0133 a owl:Class ; rdfs:label "Two-dimensional gel electrophoresis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Two-dimensional gel electrophoresis image and related data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Two-dimensional gel electrophoresis image and related data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0134 a owl:Class ; +ns1:topic_0134 a owl:Class ; rdfs:label "Mass spectrometry" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3520 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3520 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0135 a owl:Class ; +ns1:topic_0135 a owl:Class ; rdfs:label "Protein microarrays" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Protein microarray data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Protein microarray data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0137 a owl:Class ; +ns1:topic_0137 a owl:Class ; rdfs:label "Protein hydropathy" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0123 ; - oboInOwl:hasDefinition "The study of the hydrophobic, hydrophilic and charge properties of a protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0123 ; + ns2:hasDefinition "The study of the hydrophobic, hydrophilic and charge properties of a protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0141 a owl:Class ; +ns1:topic_0141 a owl:Class ; rdfs:label "Protein cleavage sites and proteolysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0143 a owl:Class ; +ns1:topic_0143 a owl:Class ; rdfs:label "Protein structure comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "The comparison of two or more protein structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0081 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "The comparison of two or more protein structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0144 a owl:Class ; rdfs:label "Protein residue interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0130 ; - oboInOwl:hasDefinition "The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0130 ; + ns2:hasDefinition "The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0147 a owl:Class ; +ns1:topic_0147 a owl:Class ; rdfs:label "Protein-protein interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0148 a owl:Class ; +ns1:topic_0148 a owl:Class ; rdfs:label "Protein-ligand interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein-ligand (small molecule) interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein-ligand (small molecule) interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0149 a owl:Class ; +ns1:topic_0149 a owl:Class ; rdfs:label "Protein-nucleic acid interactions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein-DNA/RNA interactions." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein-DNA/RNA interactions." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0150 a owl:Class ; +ns1:topic_0150 a owl:Class ; rdfs:label "Protein design" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0130 ; + ns2:hasDefinition "The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0151 a owl:Class ; +ns1:topic_0151 a owl:Class ; rdfs:label "G protein-coupled receptors (GPCR)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0820 ; - oboInOwl:hasDefinition "G-protein coupled receptors (GPCRs)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0820 ; + ns2:hasDefinition "G-protein coupled receptors (GPCRs)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0156 a owl:Class ; +ns1:topic_0156 a owl:Class ; rdfs:label "Sequence editing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0080, - :topic_0091 ; - oboInOwl:hasDefinition "Edit, convert or otherwise change a molecular sequence, either randomly or specifically." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0080, + ns1:topic_0091 ; + ns2:hasDefinition "Edit, convert or otherwise change a molecular sequence, either randomly or specifically." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0158 a owl:Class ; +ns1:topic_0158 a owl:Class ; rdfs:label "Sequence motifs" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites." ; - oboInOwl:hasExactSynonym "Motifs" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites." ; + ns2:hasExactSynonym "Motifs" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0159 a owl:Class ; +ns1:topic_0159 a owl:Class ; rdfs:label "Sequence comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The comparison of two or more molecular sequences, for example sequence alignment and clustering." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The comparison of two or more molecular sequences, for example sequence alignment and clustering." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0163 a owl:Class ; rdfs:label "Sequence database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence)." ; + ns2:inSubset ns4: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 ; +ns1:topic_0164 a owl:Class ; rdfs:label "Sequence clustering" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "The comparison and grouping together of molecular sequences on the basis of their similarities." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "The comparison and grouping together of molecular sequences on the basis of their similarities." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0167 a owl:Class ; rdfs:label "Structural (3D) profiles" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0081 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0172 a owl:Class ; +ns1:topic_0172 a owl:Class ; rdfs:label "Protein structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0173 a owl:Class ; +ns1:topic_0173 a owl:Class ; rdfs:label "Nucleic acid structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0097 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0097 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0174 a owl:Class ; +ns1:topic_0174 a owl:Class ; rdfs:label "Ab initio structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0175 a owl:Class ; +ns1:topic_0175 a owl:Class ; rdfs:label "Homology modelling" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.4" ; - oboInOwl:consider :topic_2275 ; - oboInOwl:hasDefinition "The modelling of the three-dimensional structure of a protein using known sequence and structural data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:topic_2275 ; + ns2:hasDefinition "The modelling of the three-dimensional structure of a protein using known sequence and structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0177 a owl:Class ; +ns1:topic_0177 a owl:Class ; rdfs:label "Molecular docking" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The modelling the structure of proteins in complex with small molecules or other macromolecules." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2275 ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The modelling the structure of proteins in complex with small molecules or other macromolecules." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2275 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0178 a owl:Class ; +ns1:topic_0178 a owl:Class ; rdfs:label "Protein secondary structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The prediction of secondary or supersecondary structure of protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The prediction of secondary or supersecondary structure of protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0179 a owl:Class ; +ns1:topic_0179 a owl:Class ; rdfs:label "Protein tertiary structure prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The prediction of tertiary structure of protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The prediction of tertiary structure of protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0180 a owl:Class ; +ns1:topic_0180 a owl:Class ; rdfs:label "Protein fold recognition" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0182 a owl:Class ; +ns1:topic_0182 a owl:Class ; rdfs:label "Sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "The alignment of molecular sequences or sequence profiles (representing sequence alignments)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "The alignment of molecular sequences or sequence profiles (representing sequence alignments)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0183 a owl:Class ; rdfs:label "Structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.7" ; - oboInOwl:hasDefinition "The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0081 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.7" ; + ns2:hasDefinition "The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0184 a owl:Class ; rdfs:label "Threading" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0082 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0082 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0188 a owl:Class ; +ns1:topic_0188 a owl:Class ; rdfs:label "Sequence profiles and HMMs" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "Sequence profiles; typically a positional, numerical matrix representing a sequence alignment." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "Sequence profiles; typically a positional, numerical matrix representing a sequence alignment." ; + ns2:inSubset ns4: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 ; +ns1:topic_0191 a owl:Class ; rdfs:label "Phylogeny reconstruction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3293 ; - oboInOwl:hasDefinition "The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3293 ; + ns2:hasDefinition "The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree." ; + ns2:inSubset ns4: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 ; +ns1:topic_0195 a owl:Class ; rdfs:label "Virtual PCR" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0077 ; - oboInOwl:hasDefinition "Simulated polymerase chain reaction (PCR)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0077 ; + ns2:hasDefinition "Simulated polymerase chain reaction (PCR)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0200 a owl:Class ; +ns1:topic_0200 a owl:Class ; rdfs:label "Microarrays" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "Microarrays, for example, to process microarray data or design probes and experiments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "Microarrays, for example, to process microarray data or design probes and experiments." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D046228" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0204 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The regulation of gene expression." ; + ns2:hasNarrowSynonym "Regulatory genomics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0203 . + rdfs:subClassOf ns1:topic_0203 . -:topic_0208 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." ; + ns2:hasHumanReadableId "Pharmacogenomics" ; + ns2:hasNarrowSynonym "Pharmacogenetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0202, - :topic_0622 . + rdfs:subClassOf ns1:topic_0202, + ns1:topic_0622 . -:topic_0209 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.4 Medicinal chemistry" ; + ns2:hasDefinition "The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes." ; + ns2:hasExactSynonym "Drug design" ; + ns2:hasHumanReadableId "Medicinal_chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3336, + ns1:topic_3371 . -:topic_0210 a owl:Class ; +ns1:topic_0210 a owl:Class ; rdfs:label "Fish" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Information on a specific fish genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific fish genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0211 a owl:Class ; +ns1:topic_0211 a owl:Class ; rdfs:label "Flies" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Information on a specific fly genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific fly genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0213 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_2820 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific mouse or rat genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_0215 a owl:Class ; rdfs:label "Worms" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Information on a specific worm genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Information on a specific worm genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0217 a owl:Class ; +ns1:topic_0217 a owl:Class ; rdfs:label "Literature analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0218 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0218 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0220 a owl:Class ; +ns1:topic_0220 a owl:Class ; rdfs:label "Document, record and content management" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The management and manipulation of digital documents, including database records, files and reports." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3489 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The management and manipulation of digital documents, including database records, files and reports." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3489 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0221 a owl:Class ; +ns1:topic_0221 a owl:Class ; rdfs:label "Sequence annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0219 ; - oboInOwl:hasDefinition "Annotation of a molecular sequence." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0219 ; + ns2:hasDefinition "Annotation of a molecular sequence." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0222 a owl:Class ; +ns1:topic_0222 a owl:Class ; rdfs:label "Genome annotation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0219, - :topic_0621, - :topic_0622 ; - oboInOwl:hasDefinition "Annotation of a genome." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0219, + ns1:topic_0621, + ns1:topic_0622 ; + ns2:hasDefinition "Annotation of a genome." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0593 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Spectroscopy" ; + ns2: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." ; + ns2:hasExactSynonym "NMR spectroscopy", "Nuclear magnetic resonance spectroscopy" ; - oboInOwl:hasHumanReadableId "NMR" ; - oboInOwl:hasNarrowSynonym "HOESY", + ns2:hasHumanReadableId "NMR" ; + ns2:hasNarrowSynonym "HOESY", "Heteronuclear Overhauser Effect Spectroscopy", "NOESY", "Nuclear Overhauser Effect Spectroscopy", "ROESY", "Rotational Frame Nuclear Overhauser Effect Spectroscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_0594 a owl:Class ; +ns1:topic_0594 a owl:Class ; rdfs:label "Sequence classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The classification of molecular sequences based on some measure of their similarity." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The classification of molecular sequences based on some measure of their similarity." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0595 a owl:Class ; rdfs:label "Protein classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0623 ; - oboInOwl:hasDefinition "primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0598 a owl:Class ; +ns1:topic_0598 a owl:Class ; rdfs:label "Sequence motif or profile" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "This includes comparison, discovery, recognition etc. of sequence motifs." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0606 a owl:Class ; +ns1:topic_0606 a owl:Class ; rdfs:label "Literature data resources" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Data resources for the biological or biomedical literature, either a primary source of literature or some derivative." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3068 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Data resources for the biological or biomedical literature, either a primary source of literature or some derivative." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3068 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0607 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Laboratory_Information_management" ; + ns2:hasNarrowSynonym "Laboratory resources" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_0608 a owl:Class ; +ns1:topic_0608 a owl:Class ; rdfs:label "Cell and tissue culture" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "General cell culture or data on a specific cell lines." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "General cell culture or data on a specific cell lines." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0611 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Electron diffraction experiment" ; + ns2: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." ; + ns2:hasHumanReadableId "Electron_microscopy" ; + ns2:hasNarrowSynonym "Electron crystallography", "SEM", "Scanning electron microscopy", "Single particle electron microscopy", "TEM", "Transmission electron microscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_0612 a owl:Class ; +ns1:topic_0612 a owl:Class ; rdfs:label "Cell cycle" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "The cell cycle including key genes and proteins." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "The cell cycle including key genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0613 a owl:Class ; +ns1:topic_0613 a owl:Class ; rdfs:label "Peptides and amino acids" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The physicochemical, biochemical or structural properties of amino acids or peptides." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The physicochemical, biochemical or structural properties of amino acids or peptides." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0616 a owl:Class ; +ns1:topic_0616 a owl:Class ; rdfs:label "Organelles" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0617 a owl:Class ; +ns1:topic_0617 a owl:Class ; rdfs:label "Ribosomes" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "Ribosomes, typically of ribosome-related genes and proteins." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "Ribosomes, typically of ribosome-related genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0618 a owl:Class ; +ns1:topic_0618 a owl:Class ; rdfs:label "Scents" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0154 ; - oboInOwl:hasDefinition "A database about scents." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0154 ; + ns2:hasDefinition "A database about scents." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0620 a owl:Class ; +ns1:topic_0620 a owl:Class ; rdfs:label "Drugs and target structures" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The structures of drugs, drug target, their interactions and binding affinities." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The structures of drugs, drug target, their interactions and binding affinities." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0624 a owl:Class ; +ns1:topic_0624 a owl:Class ; rdfs:label "Chromosomes" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Study of chromosomes." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0654 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Study of chromosomes." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0654 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0629 a owl:Class ; +ns1:topic_0629 a owl:Class ; rdfs:label "Gene expression and microarray" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0203 ; - oboInOwl:hasDefinition "Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0203 ; + ns2:hasDefinition "Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0635 a owl:Class ; +ns1:topic_0635 a owl:Class ; rdfs:label "Specific protein resources" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0623 ; - oboInOwl:hasDefinition "A particular protein, protein family or other group of proteins." ; - oboInOwl:hasExactSynonym "Specific protein" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "A particular protein, protein family or other group of proteins." ; + ns2:hasExactSynonym "Specific protein" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0637 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.25 Taxonomy" ; + ns2:hasDefinition "Organism classification, identification and naming." ; + ns2:hasHumanReadableId "Taxonomy" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3299 . + rdfs:subClassOf ns1:topic_3299 . -:topic_0641 a owl:Class ; +ns1:topic_0641 a owl:Class ; rdfs:label "Repeat sequences" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0157 ; - oboInOwl:hasDefinition "The repetitive nature of molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0157 ; + ns2:hasDefinition "The repetitive nature of molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0642 a owl:Class ; +ns1:topic_0642 a owl:Class ; rdfs:label "Low complexity sequences" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0157 ; - oboInOwl:hasDefinition "The (character) complexity of molecular sequences, particularly regions of low complexity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0157 ; + ns2:hasDefinition "The (character) complexity of molecular sequences, particularly regions of low complexity." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0644 a owl:Class ; +ns1:topic_0644 a owl:Class ; rdfs:label "Proteome" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "A specific proteome including protein sequences and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "A specific proteome including protein sequences and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0655 a owl:Class ; +ns1:topic_0655 a owl:Class ; rdfs:label "Coding RNA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0660 a owl:Class ; +ns1:topic_0660 a owl:Class ; rdfs:label "rRNA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0659 ; - oboInOwl:hasDefinition "One or more ribosomal RNA (rRNA) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0659 ; + ns2:hasDefinition "One or more ribosomal RNA (rRNA) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0663 a owl:Class ; +ns1:topic_0663 a owl:Class ; rdfs:label "tRNA" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0659 ; - oboInOwl:hasDefinition "One or more transfer RNA (tRNA) sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0659 ; + ns2:hasDefinition "One or more transfer RNA (tRNA) sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0694 a owl:Class ; +ns1:topic_0694 a owl:Class ; rdfs:label "Protein secondary structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Protein secondary structure or secondary structure alignments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2814 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Protein secondary structure or secondary structure alignments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:topic_0697 a owl:Class ; rdfs:label "RNA structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "RNA secondary or tertiary structure and alignments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "RNA secondary or tertiary structure and alignments." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0698 a owl:Class ; +ns1:topic_0698 a owl:Class ; rdfs:label "Protein tertiary structure" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Protein tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2814 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Protein tertiary structures." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2814 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0722 a owl:Class ; +ns1:topic_0722 a owl:Class ; rdfs:label "Nucleic acid classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0623 ; - oboInOwl:hasDefinition "Classification of nucleic acid sequences and structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "Classification of nucleic acid sequences and structures." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0724 a owl:Class ; +ns1:topic_0724 a owl:Class ; rdfs:label "Protein families" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.14" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0623 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.14" ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0623 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0740 a owl:Class ; +ns1:topic_0740 a owl:Class ; rdfs:label "Nucleic acid sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Nucleotide sequence alignments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Nucleotide sequence alignments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0741 a owl:Class ; +ns1:topic_0741 a owl:Class ; rdfs:label "Protein sequence alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "Protein sequence alignments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Protein sequence alignments." ; + ns2:inSubset ns4:obsolete ; rdfs:comment "A sequence profile typically represents a sequence alignment." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0747 a owl:Class ; +ns1:topic_0747 a owl:Class ; rdfs:label "Nucleic acid sites and features" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160, + ns1:topic_0640 ; + ns2:hasDefinition "The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0751 a owl:Class ; +ns1:topic_0751 a owl:Class ; rdfs:label "Phosphorylation sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :topic_0601, - :topic_0748 ; - oboInOwl:hasDefinition "Protein phosphorylation and phosphorylation sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:topic_0601, + ns1:topic_0748 ; + ns2:hasDefinition "Protein phosphorylation and phosphorylation sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0753 a owl:Class ; +ns1:topic_0753 a owl:Class ; rdfs:label "Metabolic pathways" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Metabolic pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Metabolic pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0754 a owl:Class ; +ns1:topic_0754 a owl:Class ; rdfs:label "Signaling pathways" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Signaling pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Signaling pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0767 a owl:Class ; +ns1:topic_0767 a owl:Class ; rdfs:label "Protein and peptide identification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0121 ; - oboInOwl:hasDefinition "Protein and peptide identification" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0121 ; + ns2:hasDefinition "Protein and peptide identification" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0769 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Biological or biomedical analytical workflows or pipelines." ; + ns2:hasExactSynonym "Pipelines" ; + ns2:hasHumanReadableId "Workflows" ; + ns2:hasNarrowSynonym "Software integration", "Tool integration", "Tool interoperability" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_0770 a owl:Class ; +ns1:topic_0770 a owl:Class ; rdfs:label "Data types and objects" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.0" ; - oboInOwl:consider :topic_0091 ; - oboInOwl:hasDefinition "Structuring data into basic types and (computational) objects." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.0" ; + ns2:consider ns1:topic_0091 ; + ns2:hasDefinition "Structuring data into basic types and (computational) objects." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0771 a owl:Class ; +ns1:topic_0771 a owl:Class ; rdfs:label "Theoretical biology" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3307 ; - oboInOwl:hasDefinition "Theoretical biology" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3307 ; + ns2:hasDefinition "Theoretical biology" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0779 a owl:Class ; +ns1:topic_0779 a owl:Class ; rdfs:label "Mitochondria" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2229 ; - oboInOwl:hasDefinition "Mitochondria, typically of mitochondrial genes and proteins." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2229 ; + ns2:hasDefinition "Mitochondria, typically of mitochondrial genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0781 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "VT 1.5.28" ; + ns2:hasDefinition "Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation." ; + ns2:hasHumanReadableId "Virology" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_0782 a owl:Class ; +ns1: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:hasDbXref "VT 1.5.21 Mycology" ; - oboInOwl:hasDefinition "Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation." ; - oboInOwl:hasNarrowSynonym "Yeast" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_2818 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDbXref "VT 1.5.21 Mycology" ; + ns2:hasDefinition "Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation." ; + ns2:hasNarrowSynonym "Yeast" ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_0621 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_0786 a owl:Class ; rdfs:label "Arabidopsis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0780 ; - oboInOwl:hasDefinition "Arabidopsis-specific data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0780 ; + ns2:hasDefinition "Arabidopsis-specific data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0787 a owl:Class ; +ns1:topic_0787 a owl:Class ; rdfs:label "Rice" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0780 ; - oboInOwl:hasDefinition "Rice-specific data." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0780 ; + ns2:hasDefinition "Rice-specific data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0796 a owl:Class ; +ns1:topic_0796 a owl:Class ; rdfs:label "Genetic mapping and linkage" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0102 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0797 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study (typically comparison) of the sequence, structure or function of multiple genomes." ; + ns2:hasHumanReadableId "Comparative_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_0798 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns." ; + ns2:hasHumanReadableId "Mobile_genetic_elements" ; + ns2:hasNarrowSynonym "Transposons" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0114 . + rdfs:subClassOf ns1:topic_0114 . -:topic_0803 a owl:Class ; +ns1:topic_0803 a owl:Class ; rdfs:label "Human disease" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_0634 ; - oboInOwl:hasDefinition "Human diseases, typically describing the genes, mutations and proteins implicated in disease." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0634 ; + ns2:hasDefinition "Human diseases, typically describing the genes, mutations and proteins implicated in disease." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0922 a owl:Class ; +ns1:topic_0922 a owl:Class ; rdfs:label "Primers" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "PCR primers and hybridisation oligos in a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0632 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "PCR primers and hybridisation oligos in a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0632 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1302 a owl:Class ; +ns1:topic_1302 a owl:Class ; rdfs:label "PolyA signal or sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1304 a owl:Class ; +ns1:topic_1304 a owl:Class ; rdfs:label "CpG island and isochores" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "CpG rich regions (isochores) in a nucleotide sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "CpG rich regions (isochores) in a nucleotide sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1305 a owl:Class ; +ns1:topic_1305 a owl:Class ; rdfs:label "Restriction sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3125 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3125 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1307 a owl:Class ; +ns1:topic_1307 a owl:Class ; rdfs:label "Splice sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:consider :topic_3320, - :topic_3512 ; - oboInOwl:hasDefinition "Splice sites in a nucleotide sequence or alternative RNA splicing events." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:consider ns1:topic_3320, + ns1:topic_3512 ; + ns2:hasDefinition "Splice sites in a nucleotide sequence or alternative RNA splicing events." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1308 a owl:Class ; +ns1:topic_1308 a owl:Class ; rdfs:label "Matrix/scaffold attachment sites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3125 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3125 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1311 a owl:Class ; +ns1:topic_1311 a owl:Class ; rdfs:label "Operon" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Operons (operators, promoters and genes) from a bacterial genome." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0114 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Operons (operators, promoters and genes) from a bacterial genome." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0114 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1312 a owl:Class ; +ns1:topic_1312 a owl:Class ; rdfs:label "Promoters" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0749 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0749 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1456 a owl:Class ; +ns1:topic_1456 a owl:Class ; rdfs:label "Protein membrane regions" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0736 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0736 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1811 a owl:Class ; +ns1: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:hasBroadSynonym "Bacteriology" ; - oboInOwl:hasDbXref "VT 1.5.2 Bacteriology" ; - oboInOwl:hasDefinition "Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_0621 ; + ns2:consider ns1:topic_0621 ; + ns2:hasBroadSynonym "Bacteriology" ; + ns2:hasDbXref "VT 1.5.2 Bacteriology" ; + ns2:hasDefinition "Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_2225 a owl:Class ; rdfs:label "Protein databases" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0078 ; - oboInOwl:hasDefinition "Protein data resources." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0078 ; + ns2:hasDefinition "Protein data resources." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2226 a owl:Class ; +ns1:topic_2226 a owl:Class ; rdfs:label "Structure determination" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_1317 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2230 a owl:Class ; +ns1:topic_2230 a owl:Class ; rdfs:label "Classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_0089 ; + ns2:hasDefinition "Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2232 a owl:Class ; +ns1:topic_2232 a owl:Class ; rdfs:label "Lipoproteins" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0820 ; - oboInOwl:hasDefinition "Lipoproteins (protein-lipid assemblies)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0820 ; + ns2:hasDefinition "Lipoproteins (protein-lipid assemblies)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2257 a owl:Class ; +ns1:topic_2257 a owl:Class ; rdfs:label "Phylogeny visualisation" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0084 ; - oboInOwl:hasDefinition "Visualise a phylogeny, for example, render a phylogenetic tree." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0084 ; + ns2:hasDefinition "Visualise a phylogeny, for example, render a phylogenetic tree." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2269 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The application of statistical methods to biological problems." ; + ns2:hasHumanReadableId "Statistics_and_probability" ; + ns2:hasNarrowSynonym "Bayesian methods", "Biostatistics", "Descriptive statistics", "Gaussian processes", @@ -24961,721 +24961,721 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Probabilistic graphical model", "Probability", "Statistics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , , "http://en.wikipedia.org/wiki/Biostatistics", "http://purl.bioontology.org/ontology/MSH/D056808" ; - rdfs:subClassOf :topic_3315 . + rdfs:subClassOf ns1:topic_3315 . -:topic_2271 a owl:Class ; +ns1:topic_2271 a owl:Class ; rdfs:label "Structure database search" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0081 ; + ns2:hasDefinition "Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure)." ; + ns2:inSubset ns4: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 ; +ns1:topic_2276 a owl:Class ; rdfs:label "Protein function prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_1775 ; - oboInOwl:hasDefinition "The prediction of functional properties of a protein." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_1775 ; + ns2:hasDefinition "The prediction of functional properties of a protein." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2277 a owl:Class ; +ns1:topic_2277 a owl:Class ; rdfs:label "SNP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2278 a owl:Class ; +ns1:topic_2278 a owl:Class ; rdfs:label "Transmembrane protein prediction" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0082, - :topic_0820 ; - oboInOwl:hasDefinition "Predict transmembrane domains and topology in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0082, + ns1:topic_0820 ; + ns2:hasDefinition "Predict transmembrane domains and topology in protein sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2280 a owl:Class ; +ns1:topic_2280 a owl:Class ; rdfs:label "Nucleic acid structure comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0097, - :topic_1770 ; - oboInOwl:hasDefinition "The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0097, + ns1:topic_1770 ; + ns2:hasDefinition "The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures." ; + ns2:inSubset ns4: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 ; +ns1:topic_2397 a owl:Class ; rdfs:label "Exons" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Exons in a nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Exons in a nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2399 a owl:Class ; +ns1:topic_2399 a owl:Class ; rdfs:label "Gene transcription" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Transcription of DNA into RNA including the regulation of transcription." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Transcription of DNA into RNA including the regulation of transcription." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2533 a owl:Class ; +ns1:topic_2533 a owl:Class ; rdfs:label "DNA mutation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DNA mutation." ; - oboInOwl:hasHumanReadableId "DNA_mutation" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA mutation." ; + ns2:hasHumanReadableId "DNA_mutation" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0199, - :topic_0654 . + rdfs:subClassOf ns1:topic_0199, + ns1:topic_0654 . -:topic_2640 a owl:Class ; +ns1: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 , + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.16 Oncology" ; + ns2:hasDefinition "The study of cancer, for example, genes and proteins implicated in cancer." ; + ns2:hasExactSynonym , "Cancer biology" ; - oboInOwl:hasHumanReadableId "Oncology" ; - oboInOwl:hasNarrowSynonym "Cancer", + ns2:hasHumanReadableId "Oncology" ; + ns2:hasNarrowSynonym "Cancer", "Neoplasm", "Neoplasms" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_2661 a owl:Class ; +ns1:topic_2661 a owl:Class ; rdfs:label "Toxins and targets" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Structural and associated data for toxic chemical substances." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0154 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Structural and associated data for toxic chemical substances." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0154 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2754 a owl:Class ; +ns1:topic_2754 a owl:Class ; rdfs:label "Introns" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Introns in a nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Introns in a nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2807 a owl:Class ; +ns1:topic_2807 a owl:Class ; rdfs:label "Tool topic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:hasDefinition "A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0003 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0003 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2809 a owl:Class ; +ns1:topic_2809 a owl:Class ; rdfs:label "Study topic" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_0003 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:hasDefinition "A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0003 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2811 a owl:Class ; +ns1:topic_2811 a owl:Class ; rdfs:label "Nomenclature" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0089 ; - oboInOwl:hasDefinition "Biological nomenclature (naming), symbols and terminology." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0089 ; + ns2:hasDefinition "Biological nomenclature (naming), symbols and terminology." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2813 a owl:Class ; +ns1:topic_2813 a owl:Class ; rdfs:label "Disease genes and proteins" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0634 ; - oboInOwl:hasDefinition "The genes, gene variations and proteins involved in one or more specific diseases." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0634 ; + ns2:hasDefinition "The genes, gene variations and proteins involved in one or more specific diseases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2815 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The study of human beings in general, including the human genome and proteome." ; + ns2:hasExactSynonym "Humans" ; + ns2:hasHumanReadableId "Human_biology" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_2816 a owl:Class ; +ns1:topic_2816 a owl:Class ; rdfs:label "Gene resources" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3053 ; - oboInOwl:hasDefinition "Informatics resource (typically a database) primarily focussed on genes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3053 ; + ns2:hasDefinition "Informatics resource (typically a database) primarily focussed on genes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2817 a owl:Class ; +ns1:topic_2817 a owl:Class ; rdfs:label "Yeast" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2819 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_3500 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_2818 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1:topic_2826 a owl:Class ; rdfs:label "Protein structure alignment" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_2814 ; - oboInOwl:hasDefinition "Protein secondary or tertiary structure alignments." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_2814 ; + ns2:hasDefinition "Protein secondary or tertiary structure alignments." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2828 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Crystallography" ; + ns2:hasHumanReadableId "X-ray_diffraction" ; + ns2:hasNarrowSynonym "X-ray crystallography", "X-ray microscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_2829 a owl:Class ; +ns1:topic_2829 a owl:Class ; rdfs:label "Ontologies, nomenclature and classification" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0089 ; - oboInOwl:hasDefinition "Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0089 ; + ns2:hasDefinition "Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D002965" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2830 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Immunity-related proteins and their ligands." ; + ns2:hasHumanReadableId "Immunoproteins_and_antigens" ; + ns2:hasNarrowSynonym "Antigens", "Immunopeptides", "Immunoproteins", "Therapeutic antibodies" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0623, + ns1:topic_0804 . -:topic_2839 a owl:Class ; +ns1:topic_2839 a owl:Class ; rdfs:label "Molecules" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - 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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_3047 ; + ns2:hasDefinition "Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance." ; + ns2:hasRelatedSynonym "CHEBI:23367" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2840 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.9 Toxicology" ; + ns2:hasDefinition "Toxins and the adverse effects of these chemical substances on living organisms." ; + ns2:hasHumanReadableId "Toxicology" ; + ns2:hasNarrowSynonym "Computational toxicology", "Toxicoinformatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303, - :topic_3377 . + rdfs:subClassOf ns1:topic_3303, + ns1:topic_3377 . -:topic_2842 a owl:Class ; +ns1:topic_2842 a owl:Class ; rdfs:label "High-throughput sequencing" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta13" ; - oboInOwl:consider :topic_3168 ; - oboInOwl:hasDefinition "Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously." ; - oboInOwl:hasExactSynonym "Next-generation sequencing" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta13" ; + ns2:consider ns1:topic_3168 ; + ns2:hasDefinition "Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously." ; + ns2:hasExactSynonym "Next-generation sequencing" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2846 a owl:Class ; +ns1:topic_2846 a owl:Class ; rdfs:label "Gene regulatory networks" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Gene regulatory networks." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Gene regulatory networks." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2847 a owl:Class ; +ns1:topic_2847 a owl:Class ; rdfs:label "Disease (specific)" ; - :created_in "beta12orEarlier" ; - :obsolete_since "beta12orEarlier" ; - oboInOwl:consider :topic_0634 ; - oboInOwl:hasDefinition "Informatics resources dedicated to one or more specific diseases (not diseases in general)." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "beta12orEarlier" ; + ns2:consider ns1:topic_0634 ; + ns2:hasDefinition "Informatics resources dedicated to one or more specific diseases (not diseases in general)." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2867 a owl:Class ; +ns1:topic_2867 a owl:Class ; rdfs:label "VNTR" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2868 a owl:Class ; +ns1:topic_2868 a owl:Class ; rdfs:label "Microsatellites" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasAlternativeId :data_2868 ; - oboInOwl:hasDefinition "Microsatellite polymorphism in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasAlternativeId ns1:data_2868 ; + ns2:hasDefinition "Microsatellite polymorphism in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2869 a owl:Class ; +ns1:topic_2869 a owl:Class ; rdfs:label "RFLP" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasAlternativeId :data_2869 ; - oboInOwl:hasDefinition "Restriction fragment length polymorphisms (RFLP) in a DNA sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_2885 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasAlternativeId ns1:data_2869 ; + ns2:hasDefinition "Restriction fragment length polymorphisms (RFLP) in a DNA sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_2885 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_2953 a owl:Class ; +ns1:topic_2953 a owl:Class ; rdfs:label "Nucleic acid design" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "Topic for the design of nucleic acid sequences with specific conformations." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "Topic for the design of nucleic acid sequences with specific conformations." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3032 a owl:Class ; +ns1:topic_3032 a owl:Class ; rdfs:label "Primer or probe design" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0632 ; - oboInOwl:hasDefinition "The design of primers for PCR and DNA amplification or the design of molecular probes." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0632 ; + ns2:hasDefinition "The design of primers for PCR and DNA amplification or the design of molecular probes." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3038 a owl:Class ; +ns1:topic_3038 a owl:Class ; rdfs:label "Structure databases" ; - :created_in "beta13" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_0081 ; - oboInOwl:hasDefinition "Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_0081 ; + ns2:hasDefinition "Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3039 a owl:Class ; +ns1:topic_3039 a owl:Class ; rdfs:label "Nucleic acid structure" ; - :created_in "beta13" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_0097 ; - oboInOwl:hasDefinition "Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_0097 ; + ns2:hasDefinition "Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3041 a owl:Class ; +ns1:topic_3041 a owl:Class ; rdfs:label "Sequence databases" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "Molecular sequence data resources, including sequence sites, alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Molecular sequence data resources, including sequence sites, alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3042 a owl:Class ; +ns1:topic_3042 a owl:Class ; rdfs:label "Nucleic acid sequences" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3043 a owl:Class ; +ns1:topic_3043 a owl:Class ; rdfs:label "Protein sequences" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3044 a owl:Class ; +ns1:topic_3044 a owl:Class ; rdfs:label "Protein interaction networks" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0128 ; - oboInOwl:hasDefinition "Protein interaction networks" ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0128 ; + ns2:hasDefinition "Protein interaction networks" ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3048 a owl:Class ; +ns1:topic_3048 a owl:Class ; rdfs:label "Mammals" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0621 ; - oboInOwl:hasDefinition "Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3050 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.5 Biodiversity conservation" ; + ns2:hasDefinition "The degree of variation of life forms within a given ecosystem, biome or an entire planet." ; + ns2:hasHumanReadableId "Biodiversity" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D044822" ; - rdfs:subClassOf :topic_0610 . + rdfs:subClassOf ns1:topic_0610 . -:topic_3052 a owl:Class ; +ns1:topic_3052 a owl:Class ; rdfs:label "Sequence clusters and classification" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0080 ; - oboInOwl:hasDefinition "The comparison, grouping together and classification of macromolecules on the basis of sequence similarity." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0080 ; + ns2:hasDefinition "The comparison, grouping together and classification of macromolecules on the basis of sequence similarity." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight)." ; + ns2:hasHumanReadableId "Quantitative_genetics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0625 . + rdfs:subClassOf ns1:topic_0625 . -:topic_3056 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Population_genetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3060 a owl:Class ; +ns1:topic_3060 a owl:Class ; rdfs:label "Regulatory RNA" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:hasDefinition "Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0659 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0659 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3061 a owl:Class ; +ns1:topic_3061 a owl:Class ; rdfs:label "Documentation and help" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The documentation of resources such as tools, services and databases and how to get help." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3068 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The documentation of resources such as tools, services and databases and how to get help." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3068 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3062 a owl:Class ; +ns1:topic_3062 a owl:Class ; rdfs:label "Genetic organisation" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0114 ; - oboInOwl:hasDefinition "The structural and functional organisation of genes and other genetic elements." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0114 ; + ns2:hasDefinition "The structural and functional organisation of genes and other genetic elements." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3063 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The application of information technology to health, disease and biomedicine." ; + ns2:hasExactSynonym "Biomedical informatics", "Clinical informatics", "Health and disease", "Health informatics", "Healthcare informatics" ; - oboInOwl:hasHumanReadableId "Medical_informatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Medical_informatics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_3067 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.1 Anatomy and morphology" ; + ns2:hasDefinition "The form and function of the structures of living organisms." ; + ns2:hasHumanReadableId "Anatomy" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3072 a owl:Class ; +ns1:topic_3072 a owl:Class ; rdfs:label "Sequence feature detection" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "The detection of the positional features, such as functional and other key sites, in molecular sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "The detection of the positional features, such as functional and other key sites, in molecular sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3073 a owl:Class ; +ns1:topic_3073 a owl:Class ; rdfs:label "Nucleic acid feature detection" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_3511 ; - oboInOwl:hasDefinition "The detection of positional features such as functional sites in nucleotide sequences." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3511 ; + ns2:hasDefinition "The detection of positional features such as functional sites in nucleotide sequences." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3074 a owl:Class ; +ns1:topic_3074 a owl:Class ; rdfs:label "Protein feature detection" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160 ; - oboInOwl:hasDefinition "The detection, identification and analysis of positional protein sequence features, such as functional sites." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160 ; + ns2:hasDefinition "The detection, identification and analysis of positional protein sequence features, such as functional sites." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3075 a owl:Class ; +ns1:topic_3075 a owl:Class ; rdfs:label "Biological system modelling" ; - :created_in "beta13" ; - :obsolete_since "1.2" ; - oboInOwl:consider :topic_2259 ; - oboInOwl:hasDefinition "Topic for modelling biological systems in mathematical terms." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.2" ; + ns2:consider ns1:topic_2259 ; + ns2:hasDefinition "Topic for modelling biological systems in mathematical terms." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3078 a owl:Class ; +ns1:topic_3078 a owl:Class ; rdfs:label "Genes and proteins resources" ; - :created_in "beta13" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0623 ; + ns2:hasDefinition "Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3118 a owl:Class ; +ns1:topic_3118 a owl:Class ; rdfs:label "Protein topological domains" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Topological domains such as cytoplasmic regions in a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0736 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Topological domains such as cytoplasmic regions in a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0736 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3120 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_0108 . - -:topic_3123 a owl:Class ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId ns1:data_3120 ; + ns2:hasDefinition "Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting." ; + ns2:hasHumanReadableId "Protein_variants" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_0108 . + +ns1:topic_3123 a owl:Class ; rdfs:label "Expression signals" ; - :created_in "beta13" ; - :obsolete_since "1.12" ; - oboInOwl:consider :topic_0749 ; - oboInOwl:hasDefinition "Regions within a nucleic acid sequence containing a signal that alters a biological function." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.12" ; + ns2:consider ns1:topic_0749 ; + ns2:hasDefinition "Regions within a nucleic acid sequence containing a signal that alters a biological function." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3126 a owl:Class ; +ns1:topic_3126 a owl:Class ; rdfs:label "Nucleic acid repeats" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Repetitive elements within a nucleic acid sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0157 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Repetitive elements within a nucleic acid sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "DNA replication or recombination." ; + ns2:hasHumanReadableId "DNA_replication_and_recombination" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_0654 . + rdfs:subClassOf ns1:topic_0654 . -:topic_3135 a owl:Class ; +ns1:topic_3135 a owl:Class ; rdfs:label "Signal or transit peptide" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Coding sequences for a signal or transit peptide." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3512 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Coding sequences for a signal or transit peptide." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3512 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3139 a owl:Class ; +ns1:topic_3139 a owl:Class ; rdfs:label "Sequence tagged sites" ; - :created_in "beta13" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Sequence tagged sites (STS) in nucleic acid sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3511 ; + ns1:created_in "beta13" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Sequence tagged sites (STS) in nucleic acid sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3511 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3169 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "ChIP-sequencing", "Chip Seq", "Chip sequencing", "Chip-sequencing" ; - oboInOwl:hasHumanReadableId "ChIP-seq" ; - oboInOwl:hasNarrowSynonym "ChIP-exo" ; - oboInOwl:inSubset edam:topics ; + ns2:hasHumanReadableId "ChIP-seq" ; + ns2:hasNarrowSynonym "ChIP-exo" ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3168, - :topic_3656 . + rdfs:subClassOf ns1:topic_3168, + ns1:topic_3656 . -:topic_3170 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "RNA sequencing", "RNA-Seq analysis", "Small RNA sequencing", "Small RNA-Seq", @@ -25683,32 +25683,32 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Transcriptome profiling", "WTSS", "Whole transcriptome shotgun sequencing" ; - oboInOwl:hasHumanReadableId "RNA-Seq" ; - oboInOwl:hasNarrowSynonym "MicroRNA sequencing", + ns2:hasHumanReadableId "RNA-Seq" ; + ns2:hasNarrowSynonym "MicroRNA sequencing", "miRNA-seq" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:topic_3168 . -:topic_3171 a owl:Class ; +ns1:topic_3171 a owl:Class ; rdfs:label "DNA methylation" ; - :created_in "1.1" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; - oboInOwl:replacedBy :topic_3295 ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.3" ; + ns2:hasDefinition "DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3295 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3172 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Metabolomics" ; + ns2:hasNarrowSynonym "Exometabolomics", "LC-MS-based metabolomics", "MS-based metabolomics", "MS-based targeted metabolomics", @@ -25718,1083 +25718,1083 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Metabolome", "Metabonomics", "NMR-based metabolomics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D055432" ; - rdfs:subClassOf :topic_3391 . + rdfs:subClassOf ns1:topic_3391 . -:topic_3173 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; + ns2:hasHumanReadableId "Epigenomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_3295 . -:topic_3176 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.1" ; + ns2:hasDefinition "DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures." ; + ns2:hasHumanReadableId "DNA_packaging" ; + ns2:hasNarrowSynonym "Nucleosome positioning" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D042003" ; - rdfs:subClassOf :topic_0654 . + rdfs:subClassOf ns1:topic_0654 . -:topic_3177 a owl:Class ; +ns1:topic_3177 a owl:Class ; rdfs:label "DNA-Seq" ; - :created_in "1.1" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_3168 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3178 a owl:Class ; +ns1:topic_3178 a owl:Class ; rdfs:label "RNA-Seq alignment" ; - :created_in "1.1" ; - :obsolete_since "1.3" ; - 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 edam:obsolete ; + ns1:created_in "1.1" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0196 ; + ns2: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." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3179 a owl:Class ; +ns1: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 edam:topics ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions." ; + ns2:hasExactSynonym "ChIP-chip" ; + ns2:hasHumanReadableId "ChIP-on-chip" ; + ns2:hasNarrowSynonym "ChiP" ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3656 . + rdfs:subClassOf ns1:topic_3656 . -:topic_3263 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.3" ; + ns2:hasDefinition "The protection of data, such as patient health data, from damage or unwanted access from unauthorised users." ; + ns2:hasExactSynonym "Data privacy" ; + ns2:hasHumanReadableId "Data_security" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3292 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.4 Biochemistry and molecular biology" ; + ns2:hasDefinition "Chemical substances and physico-chemical processes and that occur within living organisms." ; + ns2:hasExactSynonym "Biological chemistry" ; + ns2:hasHumanReadableId "Biochemistry" ; + ns2:hasNarrowSynonym "Glycomics", "Pathobiochemistry", "Phytochemistry" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3314 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3314 . -:topic_3298 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors." ; + ns2:hasHumanReadableId "Phenomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0625, - :topic_3299, - :topic_3391 . + rdfs:subClassOf ns1:topic_0625, + ns1:topic_3299, + ns1:topic_3391 . -:topic_3300 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Physiology" ; - oboInOwl:hasNarrowSynonym "Electrophysiology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3302 a owl:Class ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.8 Physiology" ; + ns2:hasDefinition "The functions of living organisms and their constituent parts." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Physiology" ; + ns2:hasNarrowSynonym "Electrophysiology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The biology of parasites." ; + ns2:hasHumanReadableId "Parasitology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3304 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Neuroscience" ; + ns2:hasDbXref "VT 3.1.5 Neuroscience" ; + ns2:hasDefinition "The study of the nervous system and brain; its anatomy, physiology and function." ; + ns2:hasHumanReadableId "Neurobiology" ; + ns2:hasNarrowSynonym "Molecular neuroscience", "Neurophysiology", "Systemetic neuroscience" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3305 a owl:Class ; +ns1: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:hasExactSynonym , + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.3.1 Epidemiology" ; + ns2:hasDefinition "Topic concerning the the patterns, cause, and effect of disease within populations." ; + ns2:hasExactSynonym , ; - oboInOwl:hasHumanReadableId "Public_health_and_epidemiology" ; - oboInOwl:hasNarrowSynonym "Epidemiology", + ns2:hasHumanReadableId "Public_health_and_epidemiology" ; + ns2:hasNarrowSynonym "Epidemiology", "Public health" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3306 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.9 Biophysics" ; + ns2:hasDefinition "The use of physics to study biological system." ; + ns2:hasHumanReadableId "Biophysics" ; + ns2:hasNarrowSynonym "Medical physics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3318 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3318 . -:topic_3322 a owl:Class ; +ns1: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 , + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.25 Respiratory systems" ; + ns2:hasDefinition "The study of respiratory system." ; + ns2:hasExactSynonym , "Pulmonary medicine", "Pulmonology" ; - oboInOwl:hasHumanReadableId "Respiratory_medicine" ; - oboInOwl:hasNarrowSynonym "Pulmonary disorders", + ns2:hasHumanReadableId "Respiratory_medicine" ; + ns2:hasNarrowSynonym "Pulmonary disorders", "Respiratory disease" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3323 a owl:Class ; +ns1:topic_3323 a owl:Class ; rdfs:label "Metabolic disease" ; - :created_in "1.3" ; - :obsolete_since "1.4" ; - oboInOwl:consider :topic_3407 ; - oboInOwl:hasDefinition "The study of metabolic diseases." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.4" ; + ns2:consider ns1:topic_3407 ; + ns2:hasDefinition "The study of metabolic diseases." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3325 a owl:Class ; +ns1:topic_3325 a owl:Class ; rdfs:label "Rare diseases" ; - :created_in "1.3" ; - oboInOwl:hasDefinition "The study of rare diseases." ; - oboInOwl:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Rare_diseases" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_0634 . - -:topic_3332 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "The study of rare diseases." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Rare_diseases" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_0634 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.7.4 Computational chemistry" ; + ns2:hasDefinition "Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems." ; + ns2:hasHumanReadableId "Computational_chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3314, - :topic_3316 . + rdfs:subClassOf ns1:topic_3314, + ns1:topic_3316 . -:topic_3334 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Neurology" ; - oboInOwl:hasNarrowSynonym "Neurological disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3335 a owl:Class ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The branch of medicine that deals with the anatomy, functions and disorders of the nervous system." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Neurology" ; + ns2:hasNarrowSynonym "Neurological disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3335 a owl:Class ; rdfs:label "Cardiology" ; - :created_in "1.3" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 3.2.22 Peripheral vascular disease", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "The diseases and abnormalities of the heart and circulatory system." ; + ns2:hasExactSynonym "Cardiovascular medicine" ; + ns2:hasHumanReadableId "Cardiology" ; + ns2:hasNarrowSynonym "Cardiovascular disease", "Heart disease" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3337 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Repositories of biological samples, typically human, for basic biological and clinical research." ; + ns2:hasExactSynonym "Tissue collection", "biobanking" ; - oboInOwl:hasHumanReadableId "Biobank" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Biobank" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3277 . + rdfs:subClassOf ns1:topic_3277 . -:topic_3338 a owl:Class ; +ns1: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:hasHumanReadableId "Mouse_clinic" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3277 . - -:topic_3339 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines." ; + ns2:hasHumanReadableId "Mouse_clinic" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3277 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3277 . - -:topic_3340 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of microbial cells including bacteria, yeasts and moulds." ; + ns2:hasHumanReadableId "Microbial_collection" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3277 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3277 . - -:topic_3341 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells." ; + ns2:hasHumanReadableId "Cell_culture_collection" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3277 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA." ; + ns2:hasHumanReadableId "Clone_library" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3277 . + rdfs:subClassOf ns1:topic_3277 . -:topic_3343 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Collections of chemicals, typically for use in high-throughput screening experiments." ; + ns2:hasHumanReadableId "Compound_libraries_and_screening" ; + ns2:hasNarrowSynonym "Chemical library", "Chemical screening", "Compound library", "Small chemical compounds libraries", "Small compounds libraries", "Target identification and validation" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3336 . + rdfs:subClassOf ns1:topic_3336 . -:topic_3345 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3071 . - -:topic_3346 a owl:Class ; + ns1:created_in "1.3" ; + ns2:hasDefinition "Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases." ; + ns2:hasHumanReadableId "Data_identity_and_mapping" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3071 . + +ns1:topic_3346 a owl:Class ; rdfs:label "Sequence search" ; - :created_in "1.3" ; - :obsolete_since "1.12" ; - oboInOwl:hasDefinition "The search and retrieval from a database on the basis of molecular sequence similarity." ; - oboInOwl:hasExactSynonym "Sequence database search" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "1.3" ; + ns1:obsolete_since "1.12" ; + ns2:hasDefinition "The search and retrieval from a database on the basis of molecular sequence similarity." ; + ns2:hasExactSynonym "Sequence database search" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3360 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Objective indicators of biological state often used to assess health, and determinate treatment." ; + ns2:hasExactSynonym "Diagnostic markers" ; + ns2:hasHumanReadableId "Biomarkers" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3365 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasHumanReadableId "Data_architecture_analysis_and_design" ; + ns2:hasNarrowSynonym "Data analysis", "Data architecture", "Data design" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3366 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasHumanReadableId "Data_integration_and_warehousing" ; + ns2:hasNarrowSynonym "Data integration", "Data warehousing" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3368 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Any matter, surface or construct that interacts with a biological system." ; + ns2:hasHumanReadableId "Biomaterials" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3297 . + rdfs:subClassOf ns1:topic_3297 . -:topic_3369 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The use of synthetic chemistry to study and manipulate biological systems." ; + ns2:hasHumanReadableId "Chemical_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3371 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3371 . -:topic_3370 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 1.7.1 Analytical chemistry" ; + ns2:hasDefinition "The study of the separation, identification, and quantification of the chemical components of natural and artificial materials." ; + ns2:hasHumanReadableId "Analytical_chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3314 . + rdfs:subClassOf ns1:topic_3314 . -:topic_3372 a owl:Class ; +ns1:topic_3372 a owl:Class ; rdfs:label "Software engineering" ; - :created_in "1.4" ; - oboInOwl:hasDbXref "1.2.12 Programming languages", + ns1:created_in "1.4" ; + ns2: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", + ns2:hasDefinition "The process that leads from an original formulation of a computing problem to executable programs." ; + ns2:hasExactSynonym "Computer programming", "Software development" ; - oboInOwl:hasHumanReadableId "Software_engineering" ; - oboInOwl:hasNarrowSynonym "Algorithms", + ns2:hasHumanReadableId "Software_engineering" ; + ns2:hasNarrowSynonym "Algorithms", "Data structures", "Programming languages" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_3373 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The process of bringing a new drug to market once a lead compounds has been identified through drug discovery." ; + ns2:hasExactSynonym "Drug development science", "Medicine development", "Medicines development" ; - oboInOwl:hasHumanReadableId "Drug_development" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Drug_development" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376 . + rdfs:subClassOf ns1:topic_3376 . -:topic_3374 a owl:Class ; +ns1:topic_3374 a owl:Class ; rdfs:label "Biotherapeutics" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Drug delivery", + ns1:created_in "1.4" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3376 . - -:topic_3375 a owl:Class ; + ns2:hasDefinition "The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect." ; + ns2:hasHumanReadableId "Biotherapeutics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . + +ns1: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", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of how a drug interacts with the body." ; + ns2:hasHumanReadableId "Drug_metabolism" ; + ns2:hasNarrowSynonym "ADME", "Drug absorption", "Drug distribution", "Drug excretion", "Pharmacodynamics", "Pharmacokinetics", "Pharmacokinetics and pharmacodynamics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376 . + rdfs:subClassOf ns1:topic_3376 . -:topic_3378 a owl:Class ; +ns1:topic_3378 a owl:Class ; rdfs:label "Pharmacovigilance" ; - :created_in "1.4" ; - oboInOwl:hasDefinition "The detection, assesment, understanding and prevention of adverse effects of medicines." ; - oboInOwl:hasHumanReadableId "Pharmacovigilence" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The detection, assesment, understanding and prevention of adverse effects of medicines." ; + ns2:hasHumanReadableId "Pharmacovigilence" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:comment "Pharmacovigilence concerns safety once a drug has gone to market." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3377 . + rdfs:subClassOf ns1:topic_3377 . -:topic_3379 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities." ; + ns2:hasHumanReadableId "Preclinical_and_clinical_studies" ; + ns2:hasNarrowSynonym "Clinical studies", "Clinical study", "Clinical trial", "Drug trials", "Preclinical studies", "Preclinical study" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376, - :topic_3678 . + rdfs:subClassOf ns1:topic_3376, + ns1:topic_3678 . -:topic_3383 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of imaging techniques to understand biology." ; + ns2:hasExactSynonym "Biological imaging" ; + ns2:hasHumanReadableId "Biological_imaging" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3385 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of optical instruments to magnify the image of an object." ; + ns2:hasHumanReadableId "Light_microscopy" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3387 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.18 Marine and Freshwater biology" ; + ns2:hasDefinition "The study of organisms in the ocean or brackish waters." ; + ns2:hasHumanReadableId "Marine_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3388 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3342 . - -:topic_3390 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The identification of molecular and genetic causes of disease and the development of interventions to correct them." ; + ns2:hasHumanReadableId "Molecular_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3342 . + +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.3.7 Nutrition and Dietetics" ; + ns2: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." ; + ns2:hasExactSynonym "Nutrition", "Nutrition science" ; - oboInOwl:hasHumanReadableId "Nutritional_science" ; - oboInOwl:hasNarrowSynonym "Dietetics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Nutritional_science" ; + ns2:hasNarrowSynonym "Dietetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3393 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The processes that need to be in place to ensure the quality of products for human or animal use." ; + ns2:hasExactSynonym "Quality assurance" ; + ns2:hasHumanReadableId "Quality_affairs" ; + ns2:hasNarrowSynonym "Good clinical practice", "Good laboratory practice", "Good manufacturing practice" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3376 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . -:topic_3394 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasExactSynonym "Healthcare RA" ; + ns2:hasHumanReadableId "Regulatory_affairs" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3376 . + rdfs:subClassOf ns1:topic_3376 . -:topic_3395 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Biomedical approaches to clinical interventions that involve the use of stem cells." ; + ns2:hasExactSynonym "Stem cell research" ; + ns2:hasHumanReadableId "Regenerative_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3396 a owl:Class ; +ns1: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, incoporating biochemical, physiological, and environmental interactions that sustain life." ; - oboInOwl:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Systems_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3397 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incoporating biochemical, physiological, and environmental interactions that sustain life." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Systems_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals." ; + ns2:hasHumanReadableId "Veterinary_medicine" ; + ns2:hasNarrowSynonym "Clinical veterinary medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3398 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The application of biological concepts and methods to the analytical and synthetic methodologies of engineering." ; + ns2:hasExactSynonym "Biological engineering" ; + ns2:hasHumanReadableId "Bioengineering" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3297 . + rdfs:subClassOf ns1:topic_3297 . -:topic_3399 a owl:Class ; +ns1:topic_3399 a owl:Class ; rdfs:label "Geriatric medicine" ; - :created_in "1.4" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Ageing", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2: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 , + ns2:hasDbXref "VT 3.2.10 Geriatrics and gerontology" ; + ns2:hasDefinition "The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging." ; + ns2:hasExactSynonym , "Geriatrics" ; - oboInOwl:hasHumanReadableId "Geriatric_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Geriatric_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3400 a owl:Class ; +ns1: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 mangement." ; - oboInOwl:hasHumanReadableId "Allergy_clinical_immunology_and_immunotherapeutics" ; - oboInOwl:hasNarrowSynonym "Allergy", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.1 Allergy" ; + ns2:hasDefinition "Health issues related to the immune system and their prevention, diagnosis and mangement." ; + ns2:hasHumanReadableId "Allergy_clinical_immunology_and_immunotherapeutics" ; + ns2:hasNarrowSynonym "Allergy", "Clinical immunology", "Immune disorders", "Immunomodulators", "Immunotherapeutics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , , ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3401 a owl:Class ; +ns1: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 , + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain." ; + ns2:hasExactSynonym , "Algiatry" ; - oboInOwl:hasHumanReadableId "Pain_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Pain_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3402 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.2 Anaesthesiology" ; + ns2:hasDefinition "Anaesthesia and anaesthetics." ; + ns2:hasExactSynonym "Anaesthetics" ; + ns2:hasHumanReadableId "Anaesthesiology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3403 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.5 Critical care/Emergency medicine" ; + ns2:hasDefinition "The multidisciplinary that cares for patients with acute, life-threatening illness or injury." ; + ns2:hasExactSynonym "Acute medicine", "Emergency medicine", "Intensive care medicine" ; - oboInOwl:hasHumanReadableId "Critical_care_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Critical_care_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3404 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Dermatology" ; - oboInOwl:hasNarrowSynonym "Dermatological disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3405 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.7 Dermatology and venereal diseases" ; + ns2:hasDefinition "The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Dermatology" ; + ns2:hasNarrowSynonym "Dermatological disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Dentistry" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3406 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Dentistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 , + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.20 Otorhinolaryngology" ; + ns2:hasDefinition "The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat." ; + ns2:hasExactSynonym , "Audiovestibular medicine", "Otolaryngology", "Otorhinolaryngology" ; - oboInOwl:hasHumanReadableId "Ear_nose_and_throat_medicine" ; - oboInOwl:hasNarrowSynonym "Head and neck disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3408 a owl:Class ; + ns2:hasHumanReadableId "Ear_nose_and_throat_medicine" ; + ns2:hasNarrowSynonym "Head and neck disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Haematology" ; - oboInOwl:hasNarrowSynonym "Blood disorders", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.11 Hematology" ; + ns2:hasDefinition "The branch of medicine that deals with the blood, blood-forming organs and blood diseases." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Haematology" ; + ns2:hasNarrowSynonym "Blood disorders", "Haematological disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3409 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Gastroenterology" ; - oboInOwl:hasNarrowSynonym "Gastrointestinal disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3410 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.8 Gastroenterology and hepatology" ; + ns2:hasDefinition "The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Gastroenterology" ; + ns2:hasNarrowSynonym "Gastrointestinal disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Gender_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3411 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Gender_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym , + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.2.15 Obstetrics and gynaecology" ; + ns2:hasDefinition "The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth." ; + ns2:hasExactSynonym , ; - oboInOwl:hasHumanReadableId "Gynaecology_and_obstetrics" ; - oboInOwl:hasNarrowSynonym "Gynaecological disorders", + ns2:hasHumanReadableId "Gynaecology_and_obstetrics" ; + ns2:hasNarrowSynonym "Gynaecological disorders", "Gynaecology", "Obstetrics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3412 a owl:Class ; +ns1: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 "Hepatobiliary medicine" ; - oboInOwl:hasHumanReadableId "Hepatic_and_biliary_medicine" ; - oboInOwl:hasNarrowSynonym "Liver disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3413 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The branch of medicine that deals with the liver, gallbladder, bile ducts and bile." ; + ns2:hasExactSynonym "Hepatobiliary medicine" ; + ns2:hasHumanReadableId "Hepatic_and_biliary_medicine" ; + ns2:hasNarrowSynonym "Liver disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3413 a owl:Class ; rdfs:label "Infectious tropical disease" ; - :created_in "1.4" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The branch of medicine that deals with the infectious diseases of the tropics." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3324 ; + ns1:created_in "1.4" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The branch of medicine that deals with the infectious diseases of the tropics." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3324 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3414 a owl:Class ; +ns1: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 , + ns1:created_in "1.4" ; + ns2:hasDefinition "The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident." ; + ns2:hasExactSynonym , "Traumatology" ; - oboInOwl:hasHumanReadableId "Trauma_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Trauma_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3415 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Medical_toxicology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3416 a owl:Class ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Medical_toxicology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3416 a owl:Class ; rdfs:label "Musculoskeletal medicine" ; - :created_in "1.4" ; - oboInOwl:hasDbXref "VT 3.2.19 Orthopaedics", + ns1:created_in "1.4" ; + ns2: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", + ns2: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." ; + ns2:hasHumanReadableId "Musculoskeletal_medicine" ; + ns2:hasNarrowSynonym "Musculoskeletal disorders", "Orthopaedics", "Rheumatology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3417 a owl:Class ; +ns1:topic_3417 a owl:Class ; rdfs:label "Opthalmology" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Optometry" ; - oboInOwl:hasDbXref "VT 3.2.17 Ophthalmology", + ns1:created_in "1.4" ; + ns2:hasBroadSynonym "Optometry" ; + ns2: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Opthalmology" ; - oboInOwl:hasNarrowSynonym "Eye disoders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3418 a owl:Class ; + ns2:hasDefinition "The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Opthalmology" ; + ns2:hasNarrowSynonym "Eye disoders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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 , + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.21 Paediatrics" ; + ns2:hasDefinition "The branch of medicine that deals with the medical care of infants, children and adolescents." ; + ns2:hasExactSynonym , "Child health" ; - oboInOwl:hasHumanReadableId "Paediatrics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Paediatrics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3419 a owl:Class ; +ns1: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 mangement of mental illness, emotional disturbance and abnormal behaviour." ; - oboInOwl:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Psychiatry" ; - oboInOwl:hasNarrowSynonym "Psychiatric disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3420 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasBroadSynonym "Mental health" ; + ns2:hasDbXref "VT 3.2.23 Psychiatry" ; + ns2:hasDefinition "The branch of medicine that deals with the mangement of mental illness, emotional disturbance and abnormal behaviour." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Psychiatry" ; + ns2:hasNarrowSynonym "Psychiatric disorders" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Reproductive_health" ; - oboInOwl:hasNarrowSynonym "Andrology", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.3 Andrology" ; + ns2:hasDefinition "The health of the reproductive processes, functions and systems at all stages of life." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Reproductive_health" ; + ns2:hasNarrowSynonym "Andrology", "Family planning", "Fertility medicine", "Reproductive disorders" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3421 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Surgery" ; - oboInOwl:hasNarrowSynonym "Transplantation" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3422 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.28 Transplantation" ; + ns2: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." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Surgery" ; + ns2:hasNarrowSynonym "Transplantation" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDbXref "VT 3.2.29 Urology and nephrology" ; + ns2: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." ; + ns2:hasHumanReadableId "Urology_and_nephrology" ; + ns2:hasNarrowSynonym "Kidney disease", "Nephrology", "Urological disorders", "Urology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3423 a owl:Class ; +ns1:topic_3423 a owl:Class ; rdfs:label "Complementary medicine" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Alternative medicine", + ns1:created_in "1.4" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; + ns2:hasDbXref "VT 3.2.12 Integrative and Complementary medicine" ; + ns2: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." ; + ns2:hasHumanReadableId "Complementary_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3444 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." ; + ns2:hasExactSynonym "MRT", "Magnetic resonance imaging", "Magnetic resonance tomography", "NMRI", "Nuclear magnetic resonance imaging" ; - oboInOwl:hasHumanReadableId "MRI" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "MRI" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3448 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure." ; + ns2:hasExactSynonym "Neutron diffraction experiment" ; + ns2:hasHumanReadableId "Neutron_diffraction" ; + ns2:hasNarrowSynonym "Elastic neutron scattering", "Neutron microscopy" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_1317, - :topic_3382 . + rdfs:subClassOf ns1:topic_1317, + ns1:topic_3382 . -:topic_3452 a owl:Class ; +ns1: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", + ns1:created_in "1.7" ; + ns2:hasDefinition "Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram)." ; + ns2:hasExactSynonym "CT", "Computed tomography", "TDM" ; - oboInOwl:hasHumanReadableId "Tomography" ; - oboInOwl:hasNarrowSynonym "Electron tomography", + ns2:hasHumanReadableId "Tomography" ; + ns2:hasNarrowSynonym "Electron tomography", "PET", "Positron emission tomography", "X-ray tomography" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3473 a owl:Class ; +ns1:topic_3473 a owl:Class ; rdfs:label "Data mining" ; - :created_in "1.7" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "KDD", + ns1:created_in "1.7" ; + ns1:isdebtag "true" ; + ns2: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 edam:edam, - edam:topics ; + ns2:hasDbXref "VT 1.3.2 Data mining" ; + ns2:hasDefinition "The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format." ; + ns2:hasHumanReadableId "Data_mining" ; + ns2:hasNarrowSynonym "Pattern recognition" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_3474 a owl:Class ; +ns1: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 ouput, rather than relying on explicitly encoded information only." ; - oboInOwl:hasHumanReadableId "Machine_learning" ; - oboInOwl:hasNarrowSynonym "Active learning", + ns1:created_in "1.7" ; + ns2:hasBroadSynonym "Artificial Intelligence" ; + ns2:hasDbXref "VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics)" ; + ns2: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 ouput, rather than relying on explicitly encoded information only." ; + ns2:hasHumanReadableId "Machine_learning" ; + ns2:hasNarrowSynonym "Active learning", "Ensembl learning", "Kernel methods", "Knowledge representation", @@ -26803,62 +26803,62 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Reinforcement learning", "Supervised learning", "Unsupervised learning" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_3514 a owl:Class ; +ns1:topic_3514 a owl:Class ; rdfs:label "Protein-ligand interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-ligand (small molecule) interaction(s)." ; - oboInOwl:hasNarrowSynonym "Protein-drug interactions" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-ligand (small molecule) interaction(s)." ; + ns2:hasNarrowSynonym "Protein-drug interactions" ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3515 a owl:Class ; +ns1:topic_3515 a owl:Class ; rdfs:label "Protein-drug interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-drug interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-drug interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3516 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." ; + ns2:hasHumanReadableId "Genotyping_experiment" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3517 a owl:Class ; +ns1:topic_3517 a owl:Class ; rdfs:label "GWAS study" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "Genome-wide association study experiments." ; - oboInOwl:hasExactSynonym "GWAS", + ns1:created_in "1.8" ; + ns2:hasDefinition "Genome-wide association study experiments." ; + ns2:hasExactSynonym "GWAS", "GWAS analysis", "Genome-wide association study" ; - oboInOwl:hasHumanReadableId "GWAS_study" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "GWAS_study" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3678 . + rdfs:subClassOf ns1:topic_3678 . -:topic_3518 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDefinition "Microarray experiments including conditions, protocol, sample:data relationships etc." ; + ns2:hasExactSynonym "Microarrays" ; + ns2:hasHumanReadableId "Microarray_experiment" ; + ns2:hasNarrowSynonym "Gene expression microarray", "Genotyping array", "Methylation array", "MicroRNA array", @@ -26875,375 +26875,375 @@ ows re-sequencing of complete genomes of any given organism with high resolution "aCGH microarray", "mRNA microarray", "miRNA array" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3519 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; + ns2:hasExactSynonym "Polymerase chain reaction" ; + ns2:hasHumanReadableId "PCR_experiment" ; + ns2:hasNarrowSynonym "Quantitative PCR", "RT-qPCR", "Real Time Quantitative PCR" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3521 a owl:Class ; +ns1:topic_3521 a owl:Class ; rdfs:label "2D PAGE experiment" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3520 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3520 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3522 a owl:Class ; +ns1:topic_3522 a owl:Class ; rdfs:label "Northern blot experiment" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Northern Blot experiments." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3520 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Northern Blot experiments." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3520 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3523 a owl:Class ; +ns1:topic_3523 a owl:Class ; rdfs:label "RNAi experiment" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "RNAi experiments." ; - oboInOwl:hasHumanReadableId "RNAi_experiment" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3361 . - -:topic_3524 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "RNAi experiments." ; + ns2:hasHumanReadableId "RNAi_experiment" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3361 . + +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3361 . - -:topic_3525 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." ; + ns2:hasHumanReadableId "Simulation_experiment" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3361 . + +ns1:topic_3525 a owl:Class ; rdfs:label "Protein-nucleic acid interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-DNA/RNA interaction(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-DNA/RNA interaction(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3526 a owl:Class ; +ns1:topic_3526 a owl:Class ; rdfs:label "Protein-protein interactions" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Protein-protein interaction(s), including interactions between protein domains." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0128 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Protein-protein interaction(s), including interactions between protein domains." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0128 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3527 a owl:Class ; +ns1:topic_3527 a owl:Class ; rdfs:label "Cellular process pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Cellular process pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Cellular process pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3528 a owl:Class ; +ns1:topic_3528 a owl:Class ; rdfs:label "Disease pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Disease pathways, typically of human disease." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Disease pathways, typically of human disease." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3529 a owl:Class ; +ns1:topic_3529 a owl:Class ; rdfs:label "Environmental information processing pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Environmental information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Environmental information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3530 a owl:Class ; +ns1:topic_3530 a owl:Class ; rdfs:label "Genetic information processing pathways" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Genetic information processing pathways." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0602 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Genetic information processing pathways." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0602 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3531 a owl:Class ; +ns1:topic_3531 a owl:Class ; rdfs:label "Protein super-secondary structure" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Super-secondary structure of protein sequence(s)." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3542 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Super-secondary structure of protein sequence(s)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3542 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3533 a owl:Class ; +ns1:topic_3533 a owl:Class ; rdfs:label "Protein active sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Catalytic residues (active site) of an enzyme." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Catalytic residues (active site) of an enzyme." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3535 a owl:Class ; +ns1:topic_3535 a owl:Class ; rdfs:label "Protein-nucleic acid binding sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3534 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3534 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3536 a owl:Class ; +ns1:topic_3536 a owl:Class ; rdfs:label "Protein cleavage sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3537 a owl:Class ; +ns1:topic_3537 a owl:Class ; rdfs:label "Protein chemical modifications" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Chemical modification of a protein." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0601 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Chemical modification of a protein." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0601 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3538 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_2814 . - -:topic_3539 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Disordered structure in a protein." ; + ns2:hasExactSynonym "Protein features (disordered structure)" ; + ns2:hasHumanReadableId "Protein_disordered_structure" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_2814 . + +ns1:topic_3539 a owl:Class ; rdfs:label "Protein domains" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Structural domains or 3D folds in a protein or polypeptide chain." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0736 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Structural domains or 3D folds in a protein or polypeptide chain." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0736 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3540 a owl:Class ; +ns1:topic_3540 a owl:Class ; rdfs:label "Protein key folding sites" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Key residues involved in protein folding." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Key residues involved in protein folding." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3541 a owl:Class ; +ns1:topic_3541 a owl:Class ; rdfs:label "Protein post-translational modifications" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Post-translation modifications in a protein sequence, typically describing the specific sites involved." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0601 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Post-translation modifications in a protein sequence, typically describing the specific sites involved." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0601 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3543 a owl:Class ; +ns1:topic_3543 a owl:Class ; rdfs:label "Protein sequence repeats" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Short repetitive subsequences (repeat sequences) in a protein sequence." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0157 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Short repetitive subsequences (repeat sequences) in a protein sequence." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0157 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3544 a owl:Class ; +ns1:topic_3544 a owl:Class ; rdfs:label "Protein signal peptides" ; - :created_in "1.8" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "Signal peptides or signal peptide cleavage sites in protein sequences." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_3510 ; + ns1:created_in "1.8" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "Signal peptides or signal peptide cleavage sites in protein sequences." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_3510 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_3569 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDbXref "VT 1.1.1 Applied mathematics" ; + ns2:hasDefinition "The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models." ; + ns2:hasHumanReadableId "Applied_mathematics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3315 . + rdfs:subClassOf ns1:topic_3315 . -:topic_3570 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDbXref "VT 1.1.1 Pure mathematics" ; + ns2:hasDefinition "The study of abstract mathematical concepts." ; + ns2:hasHumanReadableId "Pure_mathematics" ; + ns2:hasNarrowSynonym "Linear algebra" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3315 . + rdfs:subClassOf ns1:topic_3315 . -:topic_3571 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDefinition "The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints." ; + ns2:hasHumanReadableId "Data_governance" ; + ns2:hasNarrowSynonym "Data stewardship" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D030541" ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3572 a owl:Class ; +ns1: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", + ns1:created_in "1.10" ; + ns2:hasDefinition "The quality, integrity, and cleaning up of data." ; + ns2:hasHumanReadableId "Data_quality_management" ; + ns2:hasNarrowSynonym "Data clean-up", "Data cleaning", "Data integrity", "Data quality" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3573 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasBroadSynonym "Freshwater science" ; + ns2:hasDbXref "VT 1.5.18 Marine and Freshwater biology" ; + ns2:hasDefinition "The study of organisms in freshwater ecosystems." ; + ns2:hasHumanReadableId "Freshwater_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3574 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.10" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.2 Human genetics" ; + ns2:hasDefinition "The study of inheritance in human beings." ; + ns2:hasHumanReadableId "Human_genetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3575 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.10" ; + ns2:hasDbXref "VT 3.3.14 Tropical medicine" ; + ns2:hasDefinition "Health problems that are prevalent in tropical and subtropical regions." ; + ns2:hasHumanReadableId "Tropical_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3303 . + rdfs:subClassOf ns1:topic_3303 . -:topic_3576 a owl:Class ; +ns1:topic_3576 a owl:Class ; rdfs:label "Medical biotechnology" ; - :created_in "1.10" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 3.3.14 Tropical medicine", + ns1:created_in "1.10" ; + ns1:isdebtag "true" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3297 . - -:topic_3577 a owl:Class ; + ns2:hasDefinition "Biotechnology applied to the medical sciences and the development of medicines." ; + ns2:hasHumanReadableId "Medical_biotechnology" ; + ns2:hasNarrowSynonym "Pharmaceutical biotechnology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3297 . + +ns1: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 , + ns1:created_in "1.10" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.4.5 Molecular diagnostics" ; + ns2:hasDefinition "An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease." ; + ns2:hasExactSynonym , "Precision medicine" ; - oboInOwl:hasHumanReadableId "Personalised_medicine" ; - oboInOwl:hasNarrowSynonym "Molecular diagnostics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3673 a owl:Class ; + ns2:hasHumanReadableId "Personalised_medicine" ; + ns2:hasNarrowSynonym "Molecular diagnostics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3673 a owl:Class ; rdfs:label "Whole genome sequencing" ; - :created_in "1.12" ; - :documentation ; - oboInOwl:hasDefinition "Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time." ; - oboInOwl:hasExactSynonym "Genome sequencing", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time." ; + ns2:hasExactSynonym "Genome sequencing", "WGS" ; - oboInOwl:hasHumanReadableId "Whole_genome_sequencing" ; - oboInOwl:hasNarrowSynonym "De novo genome sequencing", + ns2:hasHumanReadableId "Whole_genome_sequencing" ; + ns2:hasNarrowSynonym "De novo genome sequencing", "Whole genome resequencing" ; - oboInOwl:inSubset edam:topics ; - rdfs:subClassOf :topic_3168 . + ns2:inSubset ns4:topics ; + rdfs:subClassOf ns1:topic_3168 . -:topic_3674 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Laboratory technique to sequence the methylated regions in DNA." ; + ns2:hasExactSynonym "MeDIP-chip", "MeDIP-seq", "mDIP" ; - oboInOwl:hasHumanReadableId "Methylated_DNA_immunoprecipitation" ; - oboInOwl:hasNarrowSynonym "BS-Seq", + ns2:hasHumanReadableId "Methylated_DNA_immunoprecipitation" ; + ns2:hasNarrowSynonym "BS-Seq", "Bisulfite sequencing", "MeDIP", "Methylated DNA immunoprecipitation (MeDIP)", @@ -27252,89 +27252,89 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Whole-genome bisulfite sequencing", "methy-seq", "methyl-seq" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3656 . + rdfs:subClassOf ns1:topic_3656 . -:topic_3676 a owl:Class ; +ns1:topic_3676 a owl:Class ; rdfs:label "Exome sequencing" ; - :created_in "1.12" ; - :documentation ; - oboInOwl:hasDefinition "Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome." ; - oboInOwl:hasExactSynonym "Exome", + ns1:created_in "1.12" ; + ns1:documentation ; + ns2:hasDefinition "Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome." ; + ns2:hasExactSynonym "Exome", "Exome analysis", "Exome capture", "Targeted exome capture", "WES", "Whole exome sequencing" ; - oboInOwl:hasHumanReadableId "Exome_sequencing" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "Exome_sequencing" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "Exome sequencing is considered a cheap alternative to whole genome sequencing." ; - rdfs:subClassOf :topic_3168 . + rdfs:subClassOf ns1:topic_3168 . -:topic_3679 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3386, - :topic_3678 . - -:topic_3697 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "The design of an experiment involving non-human animals." ; + ns2:hasHumanReadableId "Animal_study" ; + ns2:hasNarrowSynonym "Challenge study" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3386, + ns1:topic_3678 . + +ns1: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", + ns1:created_in "1.13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The ecology of microorganisms including their relationship with one another and their environment." ; + ns2:hasExactSynonym "Environmental microbiology" ; + ns2:hasHumanReadableId "Microbial_ecology" ; + ns2:hasNarrowSynonym "Community analysis", "Microbiome", "Molecular community analysis" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0610, - :topic_3301 . + rdfs:subClassOf ns1:topic_0610, + ns1:topic_3301 . -:topic_3794 a owl:Class ; +ns1: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", + ns1:created_in "1.17" ; + ns2:hasDefinition "An antibody-based technique used to map in vivo RNA-protein interactions." ; + ns2:hasExactSynonym "RIP" ; + ns2:hasHumanReadableId "RNA_immunoprecipitation" ; + ns2:hasNarrowSynonym "CLIP", "CLIP-seq", "HITS-CLIP", "PAR-CLIP", "iCLIP" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3656 . + rdfs:subClassOf ns1:topic_3656 . -:topic_3796 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.17" ; + ns2:hasDefinition "Large-scale study (typically comparison) of DNA sequences of populations." ; + ns2:hasHumanReadableId "Population_genomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_3810 a owl:Class ; +ns1:topic_3810 a owl:Class ; rdfs:label "Agricultural science" ; - :created_in "1.20" ; - oboInOwl:hasBroadSynonym "Agriculture", + ns1:created_in "1.20" ; + ns2:hasBroadSynonym "Agriculture", "Agroecology", "Agronomy" ; - oboInOwl:hasDefinition "Multidisciplinary study, research and development within the field of agriculture." ; - oboInOwl:hasHumanReadableId "Agricultural_science" ; - oboInOwl:hasNarrowSynonym "", + ns2:hasDefinition "Multidisciplinary study, research and development within the field of agriculture." ; + ns2:hasHumanReadableId "Agricultural_science" ; + ns2:hasNarrowSynonym "", "Agricultural biotechnology", "Agricultural economics", "Animal breeding", @@ -27350,282 +27350,282 @@ ows re-sequencing of complete genomes of any given organism with high resolution "Plant nutrition", "Plant pathology", "Soil science" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3837 a owl:Class ; +ns1:topic_3837 a owl:Class ; rdfs:label "Metagenomic sequencing" ; - :created_in "1.20" ; - :documentation ; - 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 edam:topics ; - rdfs:subClassOf :topic_3168 . - -:topic_3855 a owl:Class ; + ns1:created_in "1.20" ; + ns1:documentation ; + ns2: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." ; + ns2:hasExactSynonym "Shotgun metagenomic sequencing" ; + ns2:hasHumanReadableId "Metagenomic_sequencing" ; + ns2:inSubset ns4:topics ; + rdfs:subClassOf ns1:topic_3168 . + +ns1:topic_3855 a owl:Class ; rdfs:label "Environmental science" ; - :created_in "1.21" ; - 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:hasExactSynonym "Environment" ; - oboInOwl:hasHumanReadableId "Environmental_science" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "1.21" ; + ns2: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." ; + ns2:hasExactSynonym "Environment" ; + ns2:hasHumanReadableId "Environmental_science" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3895 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.22" ; + ns2:hasDefinition "The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications." ; + ns2:hasNarrowSynonym "Biomimeic chemistry" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070, - :topic_3297 . + rdfs:subClassOf ns1:topic_3070, + ns1:topic_3297 . -:topic_3912 a owl:Class ; +ns1: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", + ns1:created_in "1.22" ; + ns2:hasDefinition "The application of biotechnology to directly manipulate an organism's genes." ; + ns2:hasExactSynonym "Genetic manipulation", "Genetic modification" ; - oboInOwl:hasHumanReadableId "Genetic_engineering" ; - oboInOwl:hasNarrowSynonym "Genome editing", + ns2:hasHumanReadableId "Genetic_engineering" ; + ns2:hasNarrowSynonym "Genome editing", "Genome engineering" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053, - :topic_3297 . + rdfs:subClassOf ns1:topic_3053, + ns1:topic_3297 . -:topic_3922 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database." ; + ns2:hasHumanReadableId "Proteogenomics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_3930 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system." ; + ns2:hasExactSynonym "Immune system genetics", "Immungenetics", "Immunology and genetics" ; - oboInOwl:hasHumanReadableId "Immunogenetics" ; - oboInOwl:hasNarrowSynonym "Immunogenes" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "Immunogenetics" ; + ns2:hasNarrowSynonym "Immunogenes" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0804, + ns1:topic_3053 . -:topic_3934 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Cytometry is the measurement of the characteristics of cells." ; + ns2:hasHumanReadableId "Cytometry" ; + ns2:hasNarrowSynonym "Flow cytometry", "Image cytometry", "Mass cytometry" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3940 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Molecular biology methods used to analyze the spatial organization of chromatin in a cell." ; + ns2:hasExactSynonym "3C technologies", "3C-based methods", "Chromosome conformation analysis" ; - oboInOwl:hasHumanReadableId "Chromosome_conformation_capture" ; - oboInOwl:hasNarrowSynonym "Chromatin accessibility", + ns2:hasHumanReadableId "Chromosome_conformation_capture" ; + ns2:hasNarrowSynonym "Chromatin accessibility", "Chromatin accessibility assay" ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3941 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "The study of microbe gene expression within natural environments (i.e. the metatranscriptome)." ; + ns2:hasHumanReadableId "Metatranscriptomics" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0203, + ns1:topic_3308 . -:topic_3943 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "The reconstruction and analysis of genomic information in extinct species." ; + ns2:hasHumanReadableId "Paleogenomics" ; + ns2:hasNarrowSynonym "Ancestral genomes", "Paleogenetics" ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0622 . + rdfs:subClassOf ns1:topic_0622 . -:topic_3944 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "The biological classification of organisms by categorizing them in groups (\"clades\") based on their most recent common ancestor." ; + ns2:hasHumanReadableId "Cladistics" ; + ns2:hasNarrowSynonym "Tree of life" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0080, - :topic_0084 . + rdfs:subClassOf ns1:topic_0080, + ns1:topic_0084 . -:topic_3945 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.24" ; + ns2:hasDefinition "The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations." ; + ns2:hasHumanReadableId "Molecular_evolution" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0625, - :topic_3299, - :topic_3391 . + rdfs:subClassOf ns1:topic_0625, + ns1:topic_3299, + ns1:topic_3391 . -:topic_3948 a owl:Class ; +ns1: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" ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Computational immunology" ; + ns2: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 . + rdfs:subClassOf ns1:topic_0605, + ns1:topic_0804 . -:topic_3954 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "A diagnostic imaging technique based on the application of ultrasound." ; + ns2:hasExactSynonym "Standardized echography", "Ultrasound imaging" ; - oboInOwl:hasHumanReadableId "Echography" ; - oboInOwl:hasNarrowSynonym "Diagnostic sonography", + ns2:hasHumanReadableId "Echography" ; + ns2:hasNarrowSynonym "Diagnostic sonography", "Medical ultrasound", "Standard echography", "Ultrasonography" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3382 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3382 . -:topic_3955 a owl:Class ; +ns1: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" ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity." ; + ns2:hasHumanReadableId "Fluxomics" ; rdfs:comment "The \"fluxome\" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype." ; - rdfs:subClassOf :topic_3391 . + rdfs:subClassOf ns1:topic_3391 . -:topic_3957 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "An experiment for studying protein-protein interactions." ; + ns2:hasHumanReadableId "Protein_interaction_experiment" ; + ns2:hasNarrowSynonym "Co-immunoprecipitation", "Phage display", "Yeast one-hybrid", "Yeast two-hybrid" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3958 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns2: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." ; + ns2:hasHumanReadableId "Copy_number_variation" ; + ns2:hasNarrowSynonym "CNV deletion", "CNV duplication", "CNV insertion / amplification", "Complex CNV", "Copy number variant" ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3175 . + rdfs:subClassOf ns1:topic_3175 . -:topic_3959 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.25" ; + ns2:hasDefinition "The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis." ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3321 . + rdfs:subClassOf ns1:topic_3321 . -:topic_3966 a owl:Class ; +ns1: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", + ns1:created_in "1.25" ; + ns2: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." ; + ns2:hasHumanReadableId "Vaccinology" ; + ns2:hasNarrowSynonym "Rational vaccine design", "Reverse vaccinology", "Structural vaccinology", "Structure-based immunogen design", "Vaccine design" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3376 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . -:topic_3967 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3391 . + ns1:created_in "1.25" ; + ns2:hasDefinition "The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches." ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3391 . -:topic_3974 a owl:Class ; +ns1:topic_3974 a owl:Class ; rdfs:label "Epistasis" ; - :created_in "1.25" ; - :documentation ; - oboInOwl:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; - oboInOwl:hasExactSynonym "Epistatic genetic interaction", + ns1:created_in "1.25" ; + ns1:documentation ; + ns2:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; + ns2:hasExactSynonym "Epistatic genetic interaction", "Epistatic interactions" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The study of the phenomena whereby the effects of one locus mask the allelic effects of another, such as how dominant alleles mask the effects of the recessive alleles at the same locus." ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D057890" ; - rdfs:subClassOf :topic_0622, - :topic_3295 . + rdfs:subClassOf ns1:topic_0622, + ns1:topic_3295 . -oboOther:date a owl:AnnotationProperty . +ns3:date a owl:AnnotationProperty . -edam:placeholder a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:placeholder a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -oboOther:idspace a owl:AnnotationProperty . +ns3:idspace a owl:AnnotationProperty . -oboOther:is_anti_symmetric a owl:AnnotationProperty . +ns3:is_anti_symmetric a owl:AnnotationProperty . -oboOther:is_metadata_tag a owl:AnnotationProperty . +ns3:is_metadata_tag a owl:AnnotationProperty . -oboOther:is_reflexive a owl:AnnotationProperty . +ns3:is_reflexive a owl:AnnotationProperty . -oboOther:is_symmetric a owl:AnnotationProperty . +ns3:is_symmetric a owl:AnnotationProperty . -oboOther:namespace a owl:AnnotationProperty . +ns3:namespace a owl:AnnotationProperty . -oboOther:remark a owl:AnnotationProperty . +ns3:remark a owl:AnnotationProperty . -oboOther:transitive_over a owl:AnnotationProperty . +ns3:transitive_over a owl:AnnotationProperty . dc:contributor a owl:AnnotationProperty . @@ -27637,2748 +27637,2748 @@ dc:title a owl:AnnotationProperty . doap:Version a owl:AnnotationProperty . -oboInOwl:ObsoleteClass a owl:Class ; +ns2:ObsoleteClass a owl:Class ; rdfs:label "Obsolete concept (EDAM)" ; - :created_in "1.2" ; - oboInOwl:hasDefinition "An obsolete concept (redefined in EDAM)." ; - oboInOwl:replacedBy owl:DeprecatedClass ; + ns1:created_in "1.2" ; + ns2:hasDefinition "An obsolete concept (redefined in EDAM)." ; + ns2:replacedBy owl:DeprecatedClass ; rdfs:comment "Needed for conversion to the OBO format." ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -oboInOwl:comment a owl:AnnotationProperty . +ns2:comment a owl:AnnotationProperty . -oboInOwl:consider a owl:AnnotationProperty . +ns2:consider a owl:AnnotationProperty . -oboInOwl:hasDbXRef a owl:AnnotationProperty . +ns2:hasDbXRef a owl:AnnotationProperty . -oboInOwl:hasDbXref a owl:AnnotationProperty . +ns2:hasDbXref a owl:AnnotationProperty . -oboInOwl:hasDefinition a owl:AnnotationProperty . +ns2:hasDefinition a owl:AnnotationProperty . -oboInOwl:hasHumanReadableId a owl:AnnotationProperty . +ns2:hasHumanReadableId a owl:AnnotationProperty . -oboInOwl:hasSubset a owl:AnnotationProperty . +ns2:hasSubset a owl:AnnotationProperty . -oboInOwl:inSubset a owl:AnnotationProperty . +ns2:inSubset a owl:AnnotationProperty . -oboInOwl:replacedBy a owl:AnnotationProperty . +ns2:replacedBy a owl:AnnotationProperty . -oboInOwl:savedBy a owl:AnnotationProperty . +ns2:savedBy a owl:AnnotationProperty . foaf:page a owl:AnnotationProperty . -:data_0862 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0867 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A dotplot of sequence similarities identified from word-matching or character comparison." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0867 . -:data_0878 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2366 . - -:data_0881 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:is_deprecation_candidate "true" ; + ns2:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more proteins." ; + ns2:hasExactSynonym "Secondary structure alignment (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2366 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2366 . - -:data_0887 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:is_deprecation_candidate "true" ; + ns2:hasDbXref "Moby:RNAStructAlignmentML" ; + ns2:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more RNA molecules." ; + ns2:hasExactSynonym "Secondary structure alignment (RNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2366 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report of molecular tertiary structure alignment-derived data." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_0892 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of values used for scoring sequence-structure compatibility." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . -:data_0924 a owl:Class ; +ns1: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 interprted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Fluorescence trace data generated by an automated DNA sequencer, which can be interprted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is the raw data produced by a DNA sequencing machine." ; - rdfs:subClassOf :data_1234, - :data_3108 . + rdfs:subClassOf ns1:data_1234, + ns1:data_3108 . -:data_0928 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603 . - -:data_0944 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments." ; + ns2:hasRelatedSynonym "Gene expression pattern" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A set of peptide masses (peptide mass fingerprint) from mass spectrometry." ; + ns2:hasExactSynonym "Peak list", "Protein fingerprint" ; - oboInOwl:hasNarrowSynonym "Molecular weights standard fingerprint" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "Molecular weights standard fingerprint" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_2536, + ns1:data_2979 . -:data_0954 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2093 . -:data_0963 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Cell line annotation", "Organism strain data" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2530 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2530 . -:data_0977 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_0983 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a bioinformatics tool, e.g. an application or web service." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_0987 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier (e.g. character symbol) of a specific atom." ; + ns2:hasExactSynonym "Atom identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_0987 a owl:Class ; rdfs:label "Chromosome name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a chromosome." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0919 ], - :data_0984, - :data_2119 . - -:data_0995 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a chromosome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0919 ], + ns1:data_0984, + ns1:data_2119 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086 . - -:data_0996 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of a nucleotide." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086 . + +ns1:data_0996 a owl:Class ; rdfs:label "Monosaccharide identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a monosaccharide." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086 . - -:data_1002 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a monosaccharide." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "CAS chemical registry number", "Chemical registry number (CAS)" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0991, - :data_2091, - :data_2895 . - -:data_1012 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0991, + ns1:data_2091, + ns1:data_2895 . + +ns1:data_1012 a owl:Class ; rdfs:label "Enzyme name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of an enzyme." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1009, - :data_1010 . - -:data_1022 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an enzyme." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1009, + ns1:data_1010 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence feature name" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2099, + ns1:data_2914, + ns1:data_3034 . -:data_1037 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2295, - :data_2387 . - -:data_1043 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "Gene:[0-9]{7}" ; + ns2:hasDefinition "Identifier of an gene from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2295, + ns1:data_2387 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "3.30.1190.10.1.1.1.1.1" ; + ns2:hasDefinition "A code number identifying a node from the CATH database." ; + ns2:hasExactSynonym "CATH code", "CATH node identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2700 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2700 . -:data_1046 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2379, - :data_2909 . - -:data_1048 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a strain of an organism variant, typically a plant, virus or bacterium." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2379, + ns1:data_2909 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0957 ], - :data_0976 . - -:data_1053 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a biological or bioinformatics database." ; + ns2:hasExactSynonym "Database identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_0976 . + +ns1:data_1053 a owl:Class ; rdfs:label "URN" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A Uniform Resource Name (URN)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1047 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A Uniform Resource Name (URN)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1047 . -:data_1056 a owl:Class ; +ns1:data_1056 a owl:Class ; rdfs:label "Database name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a biological or bioinformatics database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1048, - :data_2099 . - -:data_1069 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a biological or bioinformatics database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1048, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0874 ], - :data_3036 . - -:data_1072 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a comparison matrix." ; + ns2:hasExactSynonym "Substitution matrix identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0874 ], + ns1:data_3036 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0886 ], - :data_0976 . - -:data_1073 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of tertiary structure alignments." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0886 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1501 ], - :data_0976, - :data_3036 . - -:data_1079 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an index of amino acid physicochemical and biochemical property data." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1501 ], + ns1:data_0976, + ns1:data_3036 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_3805 ], - :data_0976 . - -:data_1083 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of electron microscopy data." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_3805 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_1104 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a biological or biomedical workflow, typically from a database of workflows." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique identifier of an entry (gene cluster) from the NCBI UniGene database." ; + ns2:hasExactSynonym "UniGene ID", "UniGene cluster ID", "UniGene identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . -:data_1133 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:example "IPR015590" ; + ns1:regex "IPR[0-9]{6}" ; + ns2:hasDefinition "Primary accession number of an InterPro entry." ; + ns2:hasExactSynonym "InterPro primary accession", "InterPro primary accession number" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1355 ], + ns1:data_2091, + ns1:data_2910 . -:data_1165 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:example "UniProt|Enzyme Nomenclature" ; + ns2:hasDefinition "The primary name of a data type from the MIRIAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "The primary name of a MIRIAM data type is taken from a controlled vocabulary." ; - rdfs:subClassOf :data_1163 . + rdfs:subClassOf ns1:data_1163 . -:data_1238 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_1233 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_1233 . -:data_1239 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1234 . - -:data_1240 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "SO:0000412" ; + ns2:hasDefinition "Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1234 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1234 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1234 . -:data_1246 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A cluster of nucleotide sequences." ; + ns2:hasExactSynonym "Nucleotide sequence cluster" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The sequences are typically related, for example a family of sequences." ; - rdfs:subClassOf :data_1234, - :data_1235 . + rdfs:subClassOf ns1:data_1234, + ns1:data_1235 . -:data_1259 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1254 . - -:data_1260 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on sequence complexity, for example low-complexity or repeat regions in sequences." ; + ns2:hasExactSynonym "Sequence property (complexity)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1254 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1254 . - -:data_1263 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on ambiguity in molecular sequence(s)." ; + ns2:hasExactSynonym "Sequence property (ambiguity)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1254 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of third base position variability in a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261 . -:data_1266 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1268 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of word composition of a nucleotide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1261, - :data_2082 . - -:data_1270 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of amino acid word composition of a protein sequence." ; + ns2:hasExactSynonym "Sequence composition (amino acid words)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1261, + ns1:data_2082 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1255 . - -:data_1283 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotation of positional sequence features, organised into a standard feature table." ; + ns2:hasExactSynonym "Sequence feature table" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1255 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map showing banding patterns derived from direct observation of a stained chromosome." ; + ns2:hasExactSynonym "Chromosome map", "Cytogenic map", "Cytologic map" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1280 . -:data_1289 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1279, - :data_2969 . - -:data_1347 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1279, + ns1:data_2969 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Dirichlet distribution used by hidden Markov model analysis programs." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . -:data_1383 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple nucleotide sequences." ; + ns2:hasExactSynonym "Sequence alignment (nucleic acid)" ; + ns2:hasNarrowSynonym "DNA sequence alignment", "RNA sequence alignment" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0863 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0863 . -:data_1385 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple molecular sequences of different types." ; + ns2:hasExactSynonym "Sequence alignment (hybrid)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA." ; - rdfs:subClassOf :data_0863 . + rdfs:subClassOf ns1:data_0863 . -:data_1410 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1397 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1397 . -:data_1411 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1398 . + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1398 . -:data_1413 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Data Type is float probably." ; - rdfs:subClassOf :data_0865 . + rdfs:subClassOf ns1:data_0865 . -:data_1427 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Character data with discrete states that may be read during phylogenetic tree calculation." ; + ns2:hasExactSynonym "Discrete characters", "Discretely coded characters", "Phylogenetic discrete states" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0871 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0871 . -:data_1428 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . - -:data_1429 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Phylogenetic report (cliques)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phylogenetic invariants data for testing alternative tree topologies." ; + ns2:hasExactSynonym "Phylogenetic report (invariants)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0199 ], - :data_2523 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], + ns1:data_2523 . -:data_1462 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a carbohydrate (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0153 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0153 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0152 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0152 ], + ns1:data_0883 . -:data_1464 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1459 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a DNA tertiary (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1459 . -:data_1519 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The report might include associated data such as frequency of peptide fragment molecular weights." ; - rdfs:subClassOf :data_0897 . + rdfs:subClassOf ns1:data_0897 . -:data_1520 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on the hydrophobic moment of a polypeptide sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; - rdfs:subClassOf :data_2970 . + rdfs:subClassOf ns1:data_2970 . -:data_1521 a owl:Class ; +ns1:data_1521 a owl:Class ; rdfs:label "Protein aliphatic index" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The aliphatic index of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The aliphatic index of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The aliphatic index is the relative protein volume occupied by aliphatic side chains." ; - rdfs:subClassOf :data_2970 . + rdfs:subClassOf ns1:data_2970 . -:data_1524 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2970 . - -:data_1525 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The solubility or atomic solvation energy of a protein sequence or structure." ; + ns2:hasExactSynonym "Protein solubility data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2970 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2970 . - -:data_1526 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the crystallizability of a protein sequence." ; + ns2:hasExactSynonym "Protein crystallizability data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2970 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2970 . - -:data_1527 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the stability, intrinsic disorder or globularity of a protein sequence." ; + ns2:hasExactSynonym "Protein globularity data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2970 . + +ns1:data_1527 a owl:Class ; rdfs:label "Protein titration curve" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The titration curve of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897, - :data_2884 . - -:data_1528 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The titration curve of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897, + ns1:data_2884 . + +ns1:data_1528 a owl:Class ; rdfs:label "Protein isoelectric point" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The isoelectric point of one proteins." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The isoelectric point of one proteins." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1530 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The hydrogen exchange rate of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1531 a owl:Class ; +ns1:data_1531 a owl:Class ; rdfs:label "Protein extinction coefficient" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The extinction coefficient of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The extinction coefficient of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1542 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the solvent accessible or buried surface area of a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0897 . -:data_1544 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2991 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Phi/psi angle data or a Ramachandran plot of a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2991 . -:data_1545 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data on the net charge distribution (dipole moment) of a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_1546 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906, - :data_2855 . - -:data_1547 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906, + ns1:data_2855 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An amino acid residue contact map for a protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . -:data_1548 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on clusters of contacting residues in protein structures such as a key structural residue network." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . -:data_1549 a owl:Class ; +ns1:data_1549 a owl:Class ; rdfs:label "Protein hydrogen bonds" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Patterns of hydrogen bonding in protein structures." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Patterns of hydrogen bonding in protein structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . -:data_1566 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0906 . - -:data_1584 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report on protein-ligand (small molecule) interaction(s)." ; + ns2:hasNarrowSynonym "Protein-drug interaction report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0906 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2985 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2985 . -:data_1596 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Nucleic acid report (folding model)", "Nucleic acid report (folding)" ; - oboInOwl:hasNarrowSynonym "RNA secondary structure folding classification", + ns2:hasNarrowSynonym "RNA secondary structure folding classification", "RNA secondary structure folding probablities" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2084 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2084 . -:data_1602 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0914 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The differences in codon usage fractions between two codon usage tables." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0914 . -:data_1636 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968, - :data_3768 . - -:data_1713 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968, + ns1:data_3768 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3065 ], - :data_2968 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3065 ], + ns1:data_2968 . -:data_1714 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603, - :data_3424 . - -:data_1757 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of spots from a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603, + ns1:data_3424 . + +ns1:data_1757 a owl:Class ; rdfs:label "Atom name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of an atom." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0983, - :data_2099 . - -:data_1795 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of an atom." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0983, + ns1:data_2099 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a gene from EcoGene Database." ; + ns2:hasExactSynonym "EcoGene Accession", "EcoGene ID" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . -:data_1863 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1278 . - -:data_1870 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Haplotyping_Study_obj" ; + ns2:hasDefinition "A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1278 . + +ns1:data_1870 a owl:Class ; rdfs:label "Genus name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a genus of organism." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_1881 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a genus of organism." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2118 . - -:data_2083 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:Author" ; + ns2:hasDefinition "Information on the authors of a published work." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2118 . + +ns1:data_2083 a owl:Class ; rdfs:label "Alignment data" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:consider :data_1394 ; - oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular alignment of some type." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:consider ns1:data_1394 ; + ns2:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular alignment of some type." ; + ns2:inSubset ns4: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 ; +ns1:data_2110 a owl:Class ; rdfs:label "Molecular property identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a molecular property." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2087 ], - :data_0976 . - -:data_2111 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a molecular property." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2087 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1598 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a codon usage table, for example a genetic code." ; + ns2:hasExactSynonym "Codon usage table identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1597 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1597 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1598 ], + ns1:data_0976 . -:data_2117 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1274 ], - :data_0976 . - -:data_2129 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a map of a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1274 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_3358 . - -:data_2139 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3358 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2985 . - -:data_2154 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Melting temperature" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2985 . + +ns1:data_2154 a owl:Class ; rdfs:label "Sequence name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Any arbitrary name of a molecular sequence." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1063, - :data_2099 . - -:data_2161 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any arbitrary name of a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1063, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A plot of sequence similarities identified from word-matching or character comparison." ; + ns2:hasRelatedSynonym "Sequence conservation report" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0867, + ns1:data_2884 . -:data_2190 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing." ; + ns2:hasExactSynonym "Hash", "Hash code", "Hash sum", "Hash value" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_2253 a owl:Class ; +ns1:data_2253 a owl:Class ; rdfs:label "Data resource definition name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a data type." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1084, - :data_2099 . - -:data_2292 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a data type." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1084, + ns1:data_2099 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Accession number of an entry from the GenBank sequence database." ; + ns2:hasExactSynonym "GenBank ID", "GenBank accession number", "GenBank identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1103 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1103 . -:data_2299 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1025, - :data_2099 . - -:data_2301 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasNarrowSynonym "Allele name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1025, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0846 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A specification of a chemical structure in SMILES format." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0846 . -:data_2309 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2108 . - -:data_2313 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]+" ; + ns2:hasDefinition "Identifier of a biological reaction from the SABIO-RK reactions database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2108 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2085 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific carbohydrate 3D structure(s)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2085 . -:data_2314 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "NCBI GI number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_2091, + ns1:data_2362 . -:data_2338 a owl:Class ; +ns1:data_2338 a owl:Class ; rdfs:label "Ontology identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Any arbitrary identifier of an ontology." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any arbitrary identifier of an ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0582 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0582 ], + ns1:data_0976 . -:data_2354 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3148 . - -:data_2382 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific RNA family or other group of classified RNA sequences." ; + ns2:hasExactSynonym "RNA family annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3148 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2531 ], - :data_0976 . - -:data_2564 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of genotype experiment metadata." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2531 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1006 . - -:data_2587 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Three letter amino acid identifier, e.g. GLY." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2596 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a blot from a Northern Blot." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2630 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a catalogue of biological resources." ; + ns2:hasExactSynonym "Catalogue identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2633 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a mobile genetic element." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2633 a owl:Class ; rdfs:label "Book ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Unique identifier of a book." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2663 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a book." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2663 a owl:Class ; rdfs:label "Carbohydrate identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a carbohydrate." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1462 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a carbohydrate." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2313 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2313 ], - :data_1086 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1462 ], + ns1:data_1086 . -:data_2711 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2530 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information concerning a genome as a whole." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2530 . -:data_2732 a owl:Class ; +ns1:data_2732 a owl:Class ; rdfs:label "Family name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a family of organism." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1868 . - -:data_2779 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a family of organism." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1868 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2790 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of stock from a catalogue of biological resources." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2812 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a two-dimensional (protein) gel." ; + ns2:hasExactSynonym "Gel identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2812 a owl:Class ; rdfs:label "Lipid identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a lipid." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2850 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a lipid." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2879 ], [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2879 ], - :data_0982 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2850 ], + ns1:data_0982 . -:data_2849 a owl:Class ; +ns1:data_2849 a owl:Class ; rdfs:label "Abstract" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An abstract of a scientific article." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2526 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An abstract of a scientific article." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526 . -:data_2850 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0883 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a lipid structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0883 . -:data_2851 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1463 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the (3D) structure of a drug." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1463 . -:data_2852 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1463 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the (3D) structure of a toxin." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1463 . -:data_2870 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome." ; + ns2:hasExactSynonym "RH map" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1280 . -:data_2873 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1426 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Gene frequencies data that may be read during phylogenetic tree calculation." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1426 . -:data_2877 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1460 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1460 . -:data_2879 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2085 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific lipid 3D structure(s)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2085 . -:data_2898 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0996 . - -:data_2906 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a monosaccharide (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0996 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0988, - :data_2901 . - -:data_2912 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a peptide deposited in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0988, + ns1:data_2901 . + +ns1:data_2912 a owl:Class ; rdfs:label "Strain accession" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0963 ], - :data_2379, - :data_2908 . - -:data_2913 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0963 ], + ns1:data_2379, + ns1:data_2908 . + +ns1:data_2913 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:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869 . - -:data_2956 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning the properties or features of one or more protein secondary structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . -:data_3002 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser." ; + ns2:hasExactSynonym "Genome annotation track", "Genome track", "Genome-browser track", "Genomic track", "Sequence annotation track" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1255 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1255 . -:data_3115 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Annotation on the array itself used in a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc." ; - rdfs:subClassOf :data_2603 . + rdfs:subClassOf ns1:data_2603 . -:data_3134 a owl:Class ; +ns1: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)", + ns1:created_in "beta13" ; + ns2: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." ; + ns2:hasExactSynonym "Clone or EST (report)", "Gene transcript annotation", "Nucleic acid features (mRNA features)", "Transcript (report)", "mRNA (report)", "mRNA features" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1276 . -:data_3181 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.1" ; + ns2:hasDefinition "An informative report about a DNA sequence assembly." ; + ns2:hasExactSynonym "Assembly report" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This might include an overall quality assement 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 . + rdfs:subClassOf ns1:data_0867 . -:data_3236 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.2" ; + ns2:hasDefinition "The position of a cytogenetic band in a genome." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2012 . -:data_3425 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_3483 a owl:Class ; + ns1:created_in "1.5" ; + ns2:hasDefinition "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates." ; + ns2:hasExactSynonym "Carbohydrate data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_3488 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment." ; + ns2:hasExactSynonym "Spectra" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Spectral information for a molecule from a nuclear magnetic resonance experiment." ; + ns2:hasExactSynonym "NMR spectra" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_3483 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_3483 . -:data_3494 a owl:Class ; +ns1:data_3494 a owl:Class ; rdfs:label "DNA sequence" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "A DNA sequence." ; - oboInOwl:hasExactSynonym "DNA sequences" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2977 . - -:data_3495 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "A DNA sequence." ; + ns2:hasExactSynonym "DNA sequences" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2977 . + +ns1:data_3495 a owl:Class ; rdfs:label "RNA sequence" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "An RNA sequence." ; - oboInOwl:hasExactSynonym "RNA sequences" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2977 . - -:data_3498 a owl:Class ; + ns1:created_in "1.8" ; + ns2:hasDefinition "An RNA sequence." ; + ns2:hasExactSynonym "RNA sequences" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2977 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects." ; + ns2:hasExactSynonym "Gene sequence variations" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], + ns1:data_0006 . -:data_3505 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2526 . + ns1:created_in "1.8" ; + ns2:hasDefinition "A list of publications such as scientic papers or books." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526 . -:data_3567 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_3669 a owl:Class ; + ns1:created_in "1.10" ; + ns2:hasDefinition "A report about a biosample." ; + ns2:hasExactSynonym "Biosample report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Some material that is used for educational (training) purposes." ; + ns2:hasNarrowSynonym "OER", "Open educational resource" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_3736 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.15" ; + ns2:hasDefinition "Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_3754 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasBroadSynonym "GO-term report" ; + ns2: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." ; + ns2:hasExactSynonym "GO-term enrichment report", "Gene ontology concept over-representation report", "Gene ontology enrichment report", "Gene ontology term enrichment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1775 ], - :data_3753 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:data_3753 . -:data_3768 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603 . - -:data_3786 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Groupings of expression profiles according to a clustering algorithm." ; + ns2:hasNarrowSynonym "Clustered gene expression profiles" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "1.16" ; + ns2:hasDefinition "A structured query, in form of a script, that defines a database search task." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_3805 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2:hasDefinition "Structural 3D model (volume map) from electron microscopy." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_0883 . -:data_3806 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.19" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:data_0883 . -:example a owl:AnnotationProperty ; +ns1:example a owl:AnnotationProperty ; rdfs:label "Example" ; - oboOther: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 "concept_properties" ; + ns3:is_metadata_tag "true" ; + ns2: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." ; + ns2:inSubset "concept_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 ; +ns1:format_1196 a owl:Class ; rdfs:label "SMILES" ; - :created_in "beta12orEarlier" ; - :documentation , + ns1:created_in "beta12orEarlier" ; + ns1:documentation , ; - oboInOwl:hasDbXref , + ns2:hasDbXref , ; - oboInOwl:hasDefinition "Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2035, - :format_2330 . + ns2:hasDefinition "Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2035, + ns1:format_2330 . -:format_1457 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server." ; + ns2:hasExactSynonym "Vienna RNA format", "Vienna RNA secondary structure format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2076, - :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2076, + ns1:format_2330 . -:format_1476 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1475, - :format_2330 . - -:format_1927 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Entry format of PDB database in PDB format." ; + ns2:hasExactSynonym "PDB format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1475, + ns1:format_2330 . + +ns1:format_1927 a owl:Class ; rdfs:label "EMBL format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "EMBL entry format." ; - oboInOwl:hasExactSynonym "EMBL", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "EMBL entry format." ; + ns2:hasExactSynonym "EMBL", "EMBL sequence format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2181, - :format_2206 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2181, + ns1:format_2206 . -:format_1931 a owl:Class ; +ns1:format_1931 a owl:Class ; rdfs:label "FASTQ-illumina" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTQ Illumina 1.3 short read format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTQ Illumina 1.3 short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1933 a owl:Class ; +ns1:format_1933 a owl:Class ; rdfs:label "FASTQ-solexa" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "FASTQ Solexa/Illumina 1.0 short read format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2182 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "FASTQ Solexa/Illumina 1.0 short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2182 . -:format_1936 a owl:Class ; +ns1:format_1936 a owl:Class ; rdfs:label "GenBank format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Genbank entry format." ; - oboInOwl:hasExactSynonym "GenBank" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2205, - :format_2206 . - -:format_1947 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Genbank entry format." ; + ns2:hasExactSynonym "GenBank" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2205, + ns1:format_2206 . + +ns1:format_1947 a owl:Class ; rdfs:label "GCG MSF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GCG MSF (multiple sequence file) file format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3486 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GCG MSF (multiple sequence file) file format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3486 . -:format_1948 a owl:Class ; +ns1:format_1948 a owl:Class ; rdfs:label "nbrf/pir" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "NBRF/PIR entry sequence format." ; - oboInOwl:hasExactSynonym "nbrf", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "NBRF/PIR entry sequence format." ; + ns2:hasExactSynonym "nbrf", "pir" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . -:format_1949 a owl:Class ; +ns1:format_1949 a owl:Class ; rdfs:label "nexus-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Nexus/paup interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_1973 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Nexus/paup interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1:format_1973 a owl:Class ; rdfs:label "nexusnon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Nexus/paup non-interleaved sequence format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_1974 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Nexus/paup non-interleaved sequence format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2305 . - -:format_1978 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "General Feature Format (GFF) of sequence features." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2305 . + +ns1:format_1978 a owl:Class ; rdfs:label "DASGFF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "DAS GFF (XML) feature format." ; - oboInOwl:hasExactSynonym "DASGFF feature", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DAS GFF (XML) feature format." ; + ns2:hasExactSynonym "DASGFF feature", "das feature" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2332, - :format_2553 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2332, + ns1:format_2553 . -:format_1982 a owl:Class ; +ns1:format_1982 a owl:Class ; rdfs:label "ClustalW format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "ClustalW format for (aligned) sequences." ; - oboInOwl:hasExactSynonym "clustal" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_1992 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "ClustalW format for (aligned) sequences." ; + ns2:hasExactSynonym "clustal" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1:format_1992 a owl:Class ; rdfs:label "meganon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Mega non-interleaved format for (typically aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2923 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Mega non-interleaved format for (typically aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2923 . -:format_1997 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" ; + ns2:hasDefinition "Phylip format for (aligned) sequences." ; + ns2:hasExactSynonym "PHYLIP", "PHYLIP interleaved format", "ph", "phy" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2924 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2924 . -:format_1998 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" ; + ns2:hasDefinition "Phylip non-interleaved format for (aligned) sequences." ; + ns2:hasExactSynonym "PHYLIP sequential format", "phylipnon" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2924 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2924 . -:format_2000 a owl:Class ; +ns1:format_2000 a owl:Class ; rdfs:label "selex" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "SELEX format for (aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_2005 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "SELEX format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1:format_2005 a owl:Class ; rdfs:label "TreeCon-seq" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Treecon format for (aligned) sequences." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_2017 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Treecon format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for an amino acid index." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1501 ], - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1501 ], + ns1:format_3033 . -:format_2021 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format of a report from text mining." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0972 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0972 ], + ns1:format_2350 . -:format_2027 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for reports on enzyme kinetics." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2024 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2024 ], + ns1:format_2350 . -:format_2038 a owl:Class ; +ns1:format_2038 a owl:Class ; rdfs:label "Phylogenetic discrete states format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of phylogenetic discrete states data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic discrete states data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1427 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1427 ], + ns1:format_2036 . -:format_2039 a owl:Class ; +ns1:format_2039 a owl:Class ; rdfs:label "Phylogenetic tree report (cliques) format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of phylogenetic cliques data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic cliques data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1428 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1428 ], + ns1:format_2036 . -:format_2049 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for phylogenetic tree distance data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1442 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1442 ], + ns1:format_2350 . -:format_2056 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3167 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for information about a microarray experimental per se (not the data generated from that experiment)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3167 . -:format_2060 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a map of (typically one) molecular sequence annotated with features." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1274 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1274 ], + ns1:format_2350 . -:format_2061 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2062 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report of general information about a specific protein." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0896 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0896 ], + ns1:format_2350 . -:format_2064 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a matrix of 3D-1D scores (amino acid environment probabilities)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1499 ], - :format_3033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1499 ], + ns1:format_3033 . -:format_2067 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a matrix of genetic distances between molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0870 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0870 ], + ns1:format_2350 . -:format_2075 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3354 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for the emission and transition counts of a hidden Markov model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3354 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3355 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3355 ], + ns1:format_2350 . -:format_2095 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2096 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2097 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2187 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2547 . - -:format_2545 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text sequence format resembling uniprotkb entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2547 . + +ns1:format_2545 a owl:Class ; rdfs:label "FASTQ-like format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A format resembling FASTQ short read format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling FASTQ short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for non-standard FASTQ short read-like formats." ; - rdfs:subClassOf :format_2057 . + rdfs:subClassOf ns1:format_2057 . -:format_2553 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2548 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for a sequence feature table." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2548 . -:format_2558 a owl:Class ; +ns1:format_2558 a owl:Class ; rdfs:label "EMBL-like (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An XML format resembling EMBL entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An XML format resembling EMBL entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the any non-standard EMBL-like XML formats." ; - rdfs:subClassOf :format_2332, - :format_2543 . + rdfs:subClassOf ns1:format_2332, + ns1:format_2543 . -:format_2566 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_3158 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence without any unknown positions or ambiguity characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2054, - :format_2332 . - -:format_3287 a owl:Class ; + ns1:created_in "1.0" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI." ; + ns2:hasExactSynonym "MIF" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2054, + ns1:format_2332 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3585 a owl:Class ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a metadata on an individual and their genetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "BED file format where each feature is described by chromosome, start, end, name, score, and strand." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6" ; - rdfs:subClassOf :format_3584 . + rdfs:subClassOf ns1:format_3584 . -:format_3590 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF)." ; + ns2:hasExactSynonym "h5" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2333, + ns1:format_3867 . -:format_3606 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Textual report format for sequence quality for reports from sequencing machines." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2048 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2048 ], + ns1:format_2350 . -:format_3620 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333, - :format_3507 . - -:format_3621 a owl:Class ; + ns1:created_in "1.11" ; + ns2:hasDefinition "MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333, + ns1:format_3507 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2333 . - -:format_3696 a owl:Class ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDefinition "Data format used by the SQLite database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2333 . + +ns1:format_3696 a owl:Class ; rdfs:label "PS" ; - :created_in "1.13" ; - oboInOwl:hasDefinition "PostScript format" ; - oboInOwl:hasExactSynonym "PostScript" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3749 a owl:Class ; + ns1:created_in "1.13" ; + ns2:hasDefinition "PostScript format" ; + ns2:hasExactSynonym "PostScript" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1:format_3749 a owl:Class ; rdfs:label "JSON-LD" ; - :created_in "1.15" ; - :documentation ; - :file_extension "jsonld" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.15" ; + ns1:documentation ; + ns1:file_extension "jsonld" ; + ns1:media_type ; + ns2: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2376, - :format_3464, - :format_3748 . - -:format_3828 a owl:Class ; + ns2:hasDefinition "JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON." ; + ns2:hasExactSynonym "JavaScript Object Notation for Linked Data" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2376, + ns1:format_3464, + ns1:format_3748 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3110 ], - :format_2350 . - -:format_3841 a owl:Class ; + ns1:created_in "1.20" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for raw microarray data." ; + ns2:hasExactSynonym "Microarray data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3110 ], + ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3862 a owl:Class ; + ns1:created_in "1.21" ; + ns2:hasDefinition "Data format used in Natural Language Processing." ; + ns2:hasExactSynonym "Natural Language Processing format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3841 . + ns1:created_in "1.21" ; + ns2:hasDefinition "An NLP format used for annotated textual documents." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3841 . -:format_3865 a owl:Class ; +ns1:format_3865 a owl:Class ; rdfs:label "RNA annotation format" ; - :created_in "1.21" ; - oboInOwl:hasBroadSynonym "RNA data format" ; - oboInOwl:hasDefinition "A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data." ; - oboInOwl:hasNarrowSynonym "miRNA data format", + ns1:created_in "1.21" ; + ns2:hasBroadSynonym "RNA data format" ; + ns2:hasDefinition "A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data." ; + ns2:hasNarrowSynonym "miRNA data format", "microRNA data format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . -:operation_0244 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse flexibility and motion in protein structure." ; + ns2:hasExactSynonym "CG analysis", "MD analysis", "Protein Dynamics Analysis", "Trajectory analysis" ; - oboInOwl:hasNarrowSynonym "Nucleic Acid Dynamics Analysis", + ns2:hasNarrowSynonym "Nucleic Acid Dynamics Analysis", "Protein flexibility and motion analysis", "Protein flexibility prediction", "Protein motion prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0250 . -:operation_0246 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify structural domains in a protein structure from first principles (for example calculations on structural compactness)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0736 ], - :operation_2406, - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0736 ], + ns1:operation_2406, + ns1:operation_3092 . -:operation_0256 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the feature tables of two or more molecular sequences." ; + ns2:hasExactSynonym "Feature comparison", "Feature table comparison" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0849 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1270 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0849 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_2403, - :operation_2424 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1270 ], + ns1:operation_2403, + ns1:operation_2424 . -:operation_0276 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a network of protein interactions." ; + ns2:hasNarrowSynonym "Protein interaction network comparison" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2984 ], - :operation_2949, - :operation_3927 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2984 ], + ns1:operation_2949, + ns1:operation_3927 . -:operation_0284 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1597 ], - :operation_0286, - :operation_3429 . - -:operation_0285 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate codon usage statistics and create a codon usage table." ; + ns2:hasExactSynonym "Codon usage table construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1597 ], + ns1:operation_0286, + ns1:operation_3429 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0286, - :operation_2998 . - -:operation_0288 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more codon usage tables." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0286, + ns1:operation_2998 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2451 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find exact character or word matches between molecular sequences without full sequence alignment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2451 . -:operation_0296 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0863 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment." ; + ns2:hasExactSynonym "Sequence profile construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0863 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1354 ], - :operation_0258, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1354 ], + ns1:operation_0258, + ns1:operation_3429 . -:operation_0297 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate some type of structural (3D) profile or template from a structure or structure alignment." ; + ns2:hasExactSynonym "Structural profile construction", "Structural profile generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0886 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0886 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0883 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0883 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0889 ], - :operation_2480, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0889 ], + ns1:operation_2480, + ns1:operation_3429 . -:operation_0304 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2422 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:operation_2422 ; + ns2:hasDefinition "Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotate a genome sequence with terms from a controlled vocabulary." ; + ns2:hasNarrowSynonym "Functional genome annotation", "Metagenome annotation", "Structural genome annotation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0361, - :operation_3918 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0361, + ns1:operation_3918 . -:operation_0391 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1546 ], - :operation_2950 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1546 ], + ns1:operation_2950 . -:operation_0393 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate clusters of contacting residues in protein structures." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1548 ], + ns1:operation_2950 . -:operation_0394 a owl:Class ; +ns1:operation_0394 a owl:Class ; rdfs:label "Hydrogen bond calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:HasHydrogenBonds", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:HasHydrogenBonds", "WHATIF:ShowHydrogenBonds", "WHATIF:ShowHydrogenBondsM" ; - oboInOwl:hasDefinition "Identify potential hydrogen bonds between amino acids and other groups." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasDefinition "Identify potential hydrogen bonds between amino acids and other groups." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1549 ], + ns1:operation_0248 . -:operation_0398 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1519 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the molecular weight of a protein sequence or fragments." ; + ns2:hasExactSynonym "Peptide mass calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1519 ], + ns1:operation_0250 . -:operation_0431 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:seeAlso :operation_0575 ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:seeAlso ns1:operation_0575 ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0415 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:operation_0415 . -:operation_0432 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA." ; + ns2:hasNarrowSynonym "Nucleosome exclusion sequence prediction", "Nucleosome formation sequence prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0415 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0415 . -:operation_0436 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences." ; + ns2:hasExactSynonym "ORF finding", "ORF prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2454 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2454 . -:operation_0441 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Transcriptional regulatory element prediction (DNA-cis)", "Transcriptional regulatory element prediction (RNA-cis)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0438 . -:operation_0473 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0270 ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Not sustainable to have protein type-specific concepts." ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0270 ; + ns2:hasDefinition "Analyse G-protein coupled receptor proteins (GPCRs)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0270 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0480 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc." ; + ns2:hasExactSynonym "Protein modelling (side chains)" ; + ns2:hasNarrowSynonym "Antibody optimisation", "Antigen optimisation", "Antigen resurfacing", "Rotamer likelihood prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0477 . -:operation_0482 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques." ; + ns2:hasExactSynonym "Ligand-binding simulation" ; + ns2:hasNarrowSynonym "Protein-peptide docking" ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1461 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_0478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_0478 . -:operation_0483 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection." ; + ns2:hasExactSynonym "Nucleic acid folding family identification", "Structured RNA prediction and optimisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1234 ], - :operation_3095 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1234 ], + ns1:operation_3095 . -:operation_0495 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Locally align two or more molecular sequences." ; + ns2:hasExactSynonym "Local sequence alignment", "Sequence alignment (local)" ; - oboInOwl:hasNarrowSynonym "Smith-Waterman" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Smith-Waterman" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Local alignment methods identify regions of local similarity." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0292 . + rdfs:subClassOf ns1:operation_0292 . -:operation_0496 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Globally align two or more molecular sequences." ; + ns2:hasExactSynonym "Global sequence alignment", "Sequence alignment (global)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Global alignment methods identify similarity across the entire length of the sequences." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0292 . + rdfs:subClassOf ns1:operation_0292 . -:operation_0503 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0295 . - -:operation_0504 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align (superimpose) exactly two molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (pairwise)" ; + ns2:hasNarrowSynonym "Pairwise protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0295 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align (superimpose) more than two molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (multiple)" ; + ns2:hasNarrowSynonym "Multiple protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes methods that use an existing alignment." ; - rdfs:subClassOf :operation_0295 . + rdfs:subClassOf ns1:operation_0295 . -:operation_0509 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Locally align (superimpose) two or more molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (local)" ; + ns2:hasNarrowSynonym "Local protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Local alignment methods identify regions of local similarity, common substructures etc." ; - rdfs:subClassOf :operation_0295 . + rdfs:subClassOf ns1:operation_0295 . -:operation_0510 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Globally align (superimpose) two or more molecular tertiary structures." ; + ns2:hasExactSynonym "Structure alignment (global)" ; + ns2:hasNarrowSynonym "Global protein structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Global alignment methods identify similarity across the entire structures." ; - rdfs:subClassOf :operation_0295 . + rdfs:subClassOf ns1:operation_0295 . -:operation_0523 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome." ; + ns2:hasExactSynonym "Sequence assembly (mapping assembly)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0310 . -:operation_0524 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Sequence assembly by combining fragments without the aid of a reference sequence or genome." ; + ns2:hasExactSynonym "De Bruijn graph", "Sequence assembly (de-novo assembly)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "De-novo assemblers are much slower and more memory intensive than mapping assemblers." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0310 . + rdfs:subClassOf ns1:operation_0310 . -:operation_0525 a owl:Class ; +ns1:operation_0525 a owl:Class ; rdfs:label "Genome assembly" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; - oboInOwl:hasExactSynonym "Genomic assembly", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The process of assembling many short DNA sequences together such thay they represent the original chromosomes from which the DNA originated." ; + ns2:hasExactSynonym "Genomic assembly", "Sequence assembly (genome assembly)" ; - oboInOwl:hasNarrowSynonym "Breakend assembly" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Breakend assembly" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0310, - :operation_3918 . + rdfs:subClassOf ns1:operation_0310, + ns1:operation_3918 . -:operation_0575 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:seeAlso :operation_0431 ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Draw or visualise restriction maps in DNA sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:seeAlso ns1:operation_0431 ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1289 ], - :operation_0573 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1289 ], + ns1:operation_0573 . -:operation_1781 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a known network of gene regulation." ; + ns2:hasNarrowSynonym "Gene regulatory network comparison", "Gene regulatory network modelling", "Regulatory network comparison", "Regulatory network modelling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_2495, - :operation_3927 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:operation_2495, + ns1:operation_3927 . -:operation_2436 a owl:Class ; +ns1:operation_2436 a owl:Class ; rdfs:label "Gene-set enrichment analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc.", + ns1:created_in "beta12orEarlier" ; + ns2:comment "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." ; - 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", + ns2:hasBroadSynonym "Gene set testing" ; + ns2: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." ; + ns2:hasExactSynonym "Functional enrichment analysis", "GSEA", "Gene-set over-represenation analysis" ; - oboInOwl:hasNarrowSynonym "Gene set analysis" ; - oboInOwl:hasRelatedSynonym "GO-term enrichment", + ns2:hasNarrowSynonym "Gene set analysis" ; + ns2:hasRelatedSynonym "GO-term enrichment", "Gene Ontology concept enrichment", "Gene Ontology term enrichment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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.", "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_topic ; - owl:someValuesFrom :topic_1775 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3754 ], - :operation_2495, - :operation_3501 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3754 ], + ns1:operation_2495, + ns1:operation_3501 . -:operation_2437 a owl:Class ; +ns1:operation_2437 a owl:Class ; rdfs:label "Gene regulatory network prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict a network of gene regulation." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2423, - :operation_2495, - :operation_3927 . - -:operation_2487 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict a network of gene regulation." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2423, + ns1:operation_2495, + ns1:operation_3927 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare protein tertiary structures." ; + ns2:hasExactSynonym "Structure comparison (protein)" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2406, + ns1:operation_2483, + ns1:operation_2997 . -:operation_2501 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2945 ; + ns2:consider ns1:operation_2478, + ns1:operation_2481 ; + ns2:hasDefinition "Process (read and / or write) nucleic acid sequence or structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2502 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2945 ; + ns2:consider ns1:operation_2406, + ns1:operation_2479 ; + ns2:hasDefinition "Process (read and / or write) protein sequence or structural data." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_2518 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2481, - :operation_2483, - :operation_2998 . - -:operation_2929 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare nucleic acid tertiary structures." ; + ns2:hasExactSynonym "Structure comparison (nucleic acid)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2481, + ns1:operation_2483, + ns1:operation_2998 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification." ; + ns2:hasExactSynonym "PMF", "Peptide mass fingerprinting", "Protein fingerprinting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0398, - :operation_2930 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0398, + ns1:operation_2930 . -:operation_2930 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare the physicochemical properties of two or more proteins (or reference data)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0897 ], - :operation_2997 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0897 ], + ns1:operation_2997 . -:operation_2996 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2480, - :operation_2990 . - -:operation_3023 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign molecular structure(s) to a group or category." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2480, + ns1:operation_2990 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2423 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2423 ; + ns2:hasDefinition "Predict, recognise, detect or identify some properties of proteins." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2423 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3024 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_2423 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_2423 ; + ns2:hasDefinition "Predict, recognise, detect or identify some properties of nucleic acids." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_2423 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3081 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3096 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3096 . -:operation_3083 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta13" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns1:oldParent ns1:operation_2497 ; + ns2:consider ns1:operation_3925, + ns1:operation_3926 ; + ns2:hasDefinition "Render (visualise) a biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_3094 a owl:Class ; +ns1:operation_3094 a owl:Class ; rdfs:label "Protein interaction network prediction" ; - :created_in "beta13" ; - oboInOwl:hasDefinition "Predict a network of protein interactions." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2949, - :operation_3927 . - -:operation_3195 a owl:Class ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Predict a network of protein interactions." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2949, + ns1:operation_3927 . + +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Detect errors in DNA sequences generated from sequencing projects)." ; + ns2:hasExactSynonym "Short read error correction", "Short-read error correction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3168 ], - :operation_2451 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3168 ], + ns1:operation_2451 . -:operation_3196 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3198 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Align short oligonucleotide sequences (reads) to a larger (genomic) sequence." ; + ns2:hasExactSynonym "Oligonucleotide alignment", "Oligonucleotide alignment construction", "Oligonucleotide alignment generation", "Oligonucleotide mapping", @@ -30387,3756 +30387,3756 @@ foaf:page a owl:AnnotationProperty . "Short read alignment", "Short read mapping", "Short sequence read mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2944, + ns1:operation_3921 . -:operation_3216 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Scaffold construction", "Scaffold generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0077 ], + ns1:operation_0310, + ns1:operation_3429 . -:operation_3223 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Differential expression analysis", "Differential gene analysis", "Differential gene expression analysis", "Differentially expressed gene identification" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0314 . -:operation_3228 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s)." ; + ns2:hasExactSynonym "Structural variation discovery" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_3197 . -:operation_3352 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "1.4" ; + ns2:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3357 a owl:Class ; +ns1: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", + ns1:comment_handle ns1:comment_handle ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Recognition of which format the given data is in." ; + ns2:hasExactSynonym "Format identification", "Format inference", "Format recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_input ; - owl:someValuesFrom :data_0006 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0006 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3358 ], - :operation_2409 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3358 ], + ns1:operation_2409 . -:operation_3431 a owl:Class ; +ns1: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", + ns1:created_in "1.6" ; + ns2:hasDefinition "Deposit some data in a database or some other type of repository or software system." ; + ns2:hasExactSynonym "Data deposition", "Data submission", "Database deposition", "Database submission", "Submission" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "For non-analytical operations, see the 'Processing' branch." ; - rdfs:subClassOf :operation_2409 . + rdfs:subClassOf ns1:operation_2409 . -:operation_3435 a owl:Class ; +ns1: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", + ns1:created_in "1.6" ; + ns2:hasDefinition "Standardize or normalize data by some statistical method." ; + ns2:hasNarrowSynonym "Normalisation", "Standardisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2238 . -:operation_3457 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:operation_2480, + ns1:operation_3443 . -:operation_3480 a owl:Class ; +ns1:operation_3480 a owl:Class ; rdfs:label "Probabilistic data generation" ; - :created_in "1.7" ; - oboInOwl:hasDefinition "Generate some data from a choosen probibalistic model, possibly to evaluate algorithms." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3429 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Generate some data from a choosen probibalistic model, possibly to evaluate algorithms." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3429 . -:operation_3645 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3631 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3631 . -:operation_3649 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2428, - :operation_3646 . - -:operation_3907 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasBroadSynonym "Validation of peptide-spectrum matches" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2428, + ns1:operation_3646 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.22" ; + ns2:hasDefinition "Extract structured information from unstructured (\"free\") or semi-structured textual documents." ; + ns2:hasExactSynonym "IE" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0306 . + rdfs:subClassOf ns1:operation_0306 . -:operation_3908 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0306 . + ns1:created_in "1.22" ; + ns2:hasDefinition "Retrieve resources from information systems matching a specific information need." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0306 . -:operation_3926 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2600 ], - :operation_0337, - :operation_3928 . - -:operation_3929 a owl:Class ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Render (visualise) a biological pathway." ; + ns2:hasExactSynonym "Pathway rendering" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2600 ], + ns1:operation_0337, + ns1:operation_3928 . + +ns1:operation_3929 a owl:Class ; rdfs:label "Metabolic pathway prediction" ; - :created_in "1.24" ; - oboInOwl:hasDefinition "Predict a metabolic pathway." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2423, - :operation_3928 . - -:operation_4009 a owl:Class ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Predict a metabolic pathway." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2423, + ns1:operation_3928 . + +ns1: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", + ns1:created_in 1.25 ; + ns2: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." ; + ns2: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 . + rdfs:subClassOf ns1:operation_2430 . -:topic_0092 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Computer graphics" ; + ns2:hasDbXref "VT 1.2.5 Computer graphics" ; + ns2:hasDefinition "Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data." ; + ns2:hasExactSynonym "Data rendering" ; + ns2:hasHumanReadableId "Data_visualisation" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3316 . + rdfs:subClassOf ns1:topic_3316 . -:topic_0152 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Carbohydrates, typically including structural information." ; + ns2:hasHumanReadableId "Carbohydrates" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0081 . + rdfs:subClassOf ns1:topic_0081 . -:topic_0153 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Lipids and their structures." ; + ns2:hasExactSynonym "Lipidomics" ; + ns2:hasHumanReadableId "Lipids" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0081 . + rdfs:subClassOf ns1:topic_0081 . -:topic_0176 a owl:Class ; +ns1:topic_0176 a owl:Class ; rdfs:label "Molecular dynamics" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Molecular flexibility", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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 edam:edam, - edam:topics ; + ns2:hasDefinition "The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." ; + ns2:hasHumanReadableId "Molecular_dynamics" ; + ns2:hasNarrowSynonym "Protein dynamics" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0082, + ns1:topic_3892 . -:topic_0202 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.7 Pharmacology and pharmacy" ; + ns2:hasDefinition "The study of drugs and their effects or responses in living systems." ; + ns2:hasHumanReadableId "Pharmacology" ; + ns2:hasNarrowSynonym "Computational pharmacology", "Pharmacoinformatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_0639 a owl:Class ; +ns1:topic_0639 a owl:Class ; rdfs:label "Protein sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0640 a owl:Class ; +ns1:topic_0640 a owl:Class ; rdfs:label "Nucleic acid sequence analysis" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.8" ; - oboInOwl:hasDefinition "The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0080 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.8" ; + ns2:hasDefinition "The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:topic_0080 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_0748 a owl:Class ; +ns1:topic_0748 a owl:Class ; rdfs:label "Protein sites and features" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.3" ; - oboInOwl:consider :topic_0160, - :topic_0639 ; - oboInOwl:hasDefinition "The detection, identification and analysis of positional features in proteins, such as functional sites." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.3" ; + ns2:consider ns1:topic_0160, + ns1:topic_0639 ; + ns2:hasDefinition "The detection, identification and analysis of positional features in proteins, such as functional sites." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:topic_1770 a owl:Class ; +ns1:topic_1770 a owl:Class ; rdfs:label "Structure comparison" ; - :created_in "beta12orEarlier" ; - :obsolete_since "1.13" ; - oboInOwl:hasDefinition "The comparison of two or more molecular structures, for example structure alignment and clustering." ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :topic_0081 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.13" ; + ns2:hasDefinition "The comparison of two or more molecular structures, for example structure alignment and clustering." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The application of information technology to chemistry in biological research environment." ; + ns2:hasExactSynonym "Chemical informatics", "Chemoinformatics" ; - oboInOwl:hasHumanReadableId "Cheminformatics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Cheminformatics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_2820 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_3500 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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 ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.4 Biochemistry and molecular biology" ; + ns2:hasDefinition "The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life." ; + ns2:hasHumanReadableId "Molecular_biology" ; + ns2:hasNarrowSynonym "Biological processes" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3064 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.14 Developmental biology" ; + ns2:hasDefinition "How organisms grow and develop." ; + ns2:hasHumanReadableId "Developmental_biology" ; + ns2:hasNarrowSynonym "Development" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3065 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage." ; + ns2:hasHumanReadableId "Embryology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3064 . + rdfs:subClassOf ns1:topic_3064 . -:topic_3077 a owl:Class ; +ns1: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 edam:data, - edam:topics ; + ns1:created_in "beta13" ; + ns2:hasDefinition "The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means." ; + ns2:hasExactSynonym "Data collection" ; + ns2:inSubset ns4:data, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3174 a owl:Class ; +ns1:topic_3174 a owl:Class ; rdfs:label "Metagenomics" ; - :created_in "1.1" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Biome sequencing", + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Biome sequencing", "Community genomics", "Ecogenomics", "Environmental genomics", "Environmental omics", "Environmental sequencing" ; - oboInOwl:hasDefinition "The study of genetic material recovered from environmental samples, and associated environmental data." ; - oboInOwl:hasHumanReadableId "Metagenomics" ; - oboInOwl:hasNarrowSynonym "Biome sequencing", + ns2:hasDefinition "The study of genetic material recovered from environmental samples, and associated environmental data." ; + ns2:hasHumanReadableId "Metagenomics" ; + ns2:hasNarrowSynonym "Biome sequencing", "Shotgun metagenomics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D056186" ; - rdfs:subClassOf :topic_0610, - :topic_0622 . + rdfs:subClassOf ns1:topic_0610, + ns1:topic_0622 . -:topic_3175 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations." ; + ns2:hasExactSynonym "DNA structural variation", "Genomic structural variation" ; - oboInOwl:hasHumanReadableId "DNA_structural_variation" ; - oboInOwl:hasNarrowSynonym "Deletion", + ns2:hasHumanReadableId "DNA_structural_variation" ; + ns2:hasNarrowSynonym "Deletion", "Duplication", "Insertion", "Inversion", "Translocation" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0199, - :topic_0654 . + rdfs:subClassOf ns1:topic_0199, + ns1:topic_0654 . -:topic_3293 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences)." ; + ns2:hasHumanReadableId "Phylogenetics" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D010802" ; - rdfs:subClassOf :topic_0080, - :topic_0084 . + rdfs:subClassOf ns1:topic_0080, + ns1:topic_0084 . -:topic_3308 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc." ; + ns2:hasHumanReadableId "Transcriptomics" ; + ns2:hasNarrowSynonym "Comparative transcriptomics", "Metatranscriptomics", "Transcriptome" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0203, - :topic_0622 . + rdfs:subClassOf ns1:topic_0203, + ns1:topic_0622 . -:topic_3318 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns2:hasDefinition "The study of matter, space and time, and related concepts such as energy and force." ; + ns2:hasHumanReadableId "Physics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3320 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons." ; + ns2:hasExactSynonym "Alternative splicing" ; + ns2:hasHumanReadableId "RNA_splicing" ; + ns2:hasNarrowSynonym "Splice sites" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0099, + ns1:topic_0203 . -:topic_3324 a owl:Class ; +ns1: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 transmissable disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions)." ; - oboInOwl:hasExactSynonym "Communicable disease", + ns1:created_in "1.3" ; + ns2:hasDbXref "VT 3.3.4 Infectious diseases" ; + ns2:hasDefinition "The branch of medicine that deals with the prevention, diagnosis and management of transmissable disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions)." ; + ns2:hasExactSynonym "Communicable disease", "Transmissable disease" ; - oboInOwl:hasHumanReadableId "Infectious_disease" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_0634 . + ns2:hasHumanReadableId "Infectious_disease" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_0634 . -:topic_3342 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Translational_medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . - -:topic_3384 a owl:Class ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Translational_medicine" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . + +ns1:topic_3384 a owl:Class ; rdfs:label "Medical imaging" ; - :created_in "1.4" ; - oboInOwl:hasDbXref "VT 3.2.13 Medical imaging", + ns1:created_in "1.4" ; + ns2: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", + ns2:hasDefinition "The use of imaging techniques for clinical purposes for medical research." ; + ns2:hasHumanReadableId "Medical_imaging" ; + ns2:hasNarrowSynonym "Neuroimaging", "Nuclear medicine", "Radiology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3382 . + rdfs:subClassOf ns1:topic_3382 . -:topic_3386 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of animals and alternatives in experimental research." ; + ns2:hasExactSynonym "Animal experimentation", "Animal research", "Animal testing", "In vivo testing" ; - oboInOwl:hasHumanReadableId "Laboratory_animal_science" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Laboratory_animal_science" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3407 a owl:Class ; +ns1: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:hasExactSynonym ; - oboInOwl:hasHumanReadableId "Endocrinology_and_metabolism" ; - oboInOwl:hasNarrowSynonym "Endocrine disorders", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym ; + ns2:hasHumanReadableId "Endocrinology_and_metabolism" ; + ns2:hasNarrowSynonym "Endocrine disorders", "Endocrinology", "Metabolic disorders", "Metabolism" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3534 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasHumanReadableId "Protein_binding_sites" ; + ns2:hasNarrowSynonym "Enzyme active site", "Protein cleavage sites", "Protein functional sites", "Protein key folding sites", "Protein-nucleic acid binding sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3510 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3510 . -:topic_3542 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.8" ; + ns2:hasDefinition "Secondary structure (predicted or real) of a protein, including super-secondary structure." ; + ns2:hasExactSynonym "Protein features (secondary structure)" ; + ns2:hasHumanReadableId "Protein_secondary_structure" ; + ns2:hasNarrowSynonym "Protein super-secondary structure" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_2814 . -:topic_3892 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "1.22" ; + ns2:hasDefinition "The study and simulation of molecular conformations using a computational model and computer simulations." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_3307 . -oboInOwl:hasAlternativeId a owl:AnnotationProperty . +ns2:hasAlternativeId a owl:AnnotationProperty . -oboInOwl:hasExactSynonym a owl:AnnotationProperty . +ns2:hasExactSynonym a owl:AnnotationProperty . -:data_0846 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2050 . - -:data_0848 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A specification of a chemical structure." ; + ns2:hasExactSynonym "Chemical structure specification" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2050 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :data_2044 ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_2044 ; + ns2:hasDefinition "A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1: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 ; +ns1:data_0865 a owl:Class ; rdfs:label "Sequence similarity score" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A value representing molecular sequence similarity." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A value representing molecular sequence similarity." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_0870 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:phylogenetic_distance_matrix" ; + ns2:hasDefinition "A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation." ; + ns2:hasExactSynonym "Phylogenetic distance matrix" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix." ; - rdfs:subClassOf :data_2855 . + rdfs:subClassOf ns1:data_2855 . -:data_0889 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some type of structural (3D) profile or template (representing a structure or structure alignment)." ; + ns2:hasExactSynonym "3D profile", "Structural (3D) profile" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_0006 . -:data_0893 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1916 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s))." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1916 . -:data_0919 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific chromosome." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc." ; - rdfs:subClassOf :data_2084 . + rdfs:subClassOf ns1:data_2084 . -:data_0949 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information, annotation or documentation concerning a workflow (but not the workflow itself)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_0970 a owl:Class ; +ns1:data_0970 a owl:Class ; rdfs:label "Citation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GCP_SimpleCitation", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Bibliographic data that uniquely identifies a scientific article, book or other published material." ; + ns2:hasExactSynonym "Bibliographic reference", "Reference" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2526 . -:data_0971 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A scientific text, typically a full text article from a scientific journal." ; + ns2:hasNarrowSynonym "Article text", "Scientific article" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2526, - :data_3671 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526, + ns1:data_3671 . -:data_0988 a owl:Class ; +ns1:data_0988 a owl:Class ; rdfs:label "Peptide identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a peptide chain." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0982 . - -:data_0993 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a peptide chain." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0982 . + +ns1:data_0993 a owl:Class ; rdfs:label "Drug identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a drug." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2851 ], - :data_1086 . - -:data_0994 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a drug." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2851 ], + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2016 ], - :data_1086 . - -:data_1010 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an amino acid." ; + ns2:hasExactSynonym "Residue identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2016 ], + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0989 . - -:data_1017 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name or other identifier of an enzyme or record from a database of enzymes." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0989 . + +ns1:data_1017 a owl:Class ; rdfs:label "Sequence range" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Specification of range(s) of sequence positions." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Specification of range(s) of sequence positions." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_1025 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0916 ], - :data_0976 . - -:data_1027 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDbXref "Moby:GeneAccessionList" ; + ns2:hasDefinition "An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0916 ], + ns1:data_0976 . + +ns1:data_1027 a owl:Class ; rdfs:label "Gene ID (NCBI)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:LocusID", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "An NCBI unique identifier of a gene." ; + ns2:hasExactSynonym "Entrez gene ID", "Gene identifier (Entrez)", "Gene identifier (NCBI)", "NCBI gene ID", "NCBI geneid" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1098, - :data_2091, - :data_2295 . - -:data_1039 a owl:Class ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1098, + ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1038, - :data_2091 . - -:data_1064 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a protein domain (or other node) from the SCOP database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1038, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0850 ], - :data_0976 . - -:data_1070 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a set of molecular sequence(s)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0850 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3035 . - -:data_1075 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3035 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0907 ], - :data_0976 . - -:data_1077 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein family." ; + ns2:hasExactSynonym "Protein secondary database record identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0907 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976, - :data_0989 . - -:data_1081 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a transcription factor (or a TF binding site)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976, + ns1:data_0989 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0920 ], - :data_0976 . - -:data_1084 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of genotypes and phenotypes." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0920 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_1085 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a data type definition from some provider." ; + ns2:hasExactSynonym "Data resource definition identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0950 ], - :data_0976 . - -:data_1089 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a mathematical model, typically an entry from a database." ; + ns2:hasExactSynonym "Biological model identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0950 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_1163 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "FB[a-zA-Z_0-9]{2}[0-9]{7}" ; + ns2:hasDefinition "Identifier of an object from the FlyBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a data type from the MIRIAM database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0957 ], - :data_2253 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0957 ], + ns1:data_2253 . -:data_1384 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0863 . - -:data_1399 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple protein sequences." ; + ns2:hasExactSynonym "Sequence alignment (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0863 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2137 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for gaps that are close together in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2137 . -:data_1442 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2523 . - -:data_1448 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Distances, such as Branch Score distance, between two or more phylogenetic trees." ; + ns2:hasExactSynonym "Phylogenetic tree report (tree distances)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2523 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of integer or floating point numbers for nucleotide comparison." ; + ns2:hasExactSynonym "Nucleotide comparison matrix", "Nucleotide substitution matrix" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0874 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0874 . -:data_1449 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of integer or floating point numbers for amino acid comparison." ; + ns2:hasExactSynonym "Amino acid comparison matrix", "Amino acid substitution matrix" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0874, - :data_2016 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0874, + ns1:data_2016 . -:data_1463 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound." ; + ns2:hasRelatedSynonym "CHEBI:23367" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0154 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0154 ], + ns1:data_0883 . -:data_1479 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0886 . - -:data_1539 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of exactly two molecular tertiary (3D) structures." ; + ns2:hasExactSynonym "Pair structure alignment" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0886 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on the quality of a protein three-dimensional model." ; + ns2:hasExactSynonym "Protein property (structural quality)", "Protein report (structural quality)", "Protein structure report (quality evaluation)", "Protein structure validation report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc." ; - rdfs:subClassOf :data_1537 . + rdfs:subClassOf ns1:data_1537 . -:data_1696 a owl:Class ; +ns1:data_1696 a owl:Class ; rdfs:label "Drug report" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "A drug structure relationship map is report (typically a map diagram) of drug structure relationships." ; - oboInOwl:hasDefinition "A human-readable collection of information about a specific drug." ; - oboInOwl:hasExactSynonym "Drug annotation" ; - oboInOwl:hasNarrowSynonym "Drug structure relationship map" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0154 ], - :data_0962 . - -:data_1709 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:comment "A drug structure relationship map is report (typically a map diagram) of drug structure relationships." ; + ns2:hasDefinition "A human-readable collection of information about a specific drug." ; + ns2:hasExactSynonym "Drug annotation" ; + ns2:hasNarrowSynonym "Drug structure relationship map" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0154 ], + ns1:data_0962 . + +ns1:data_1709 a owl:Class ; rdfs:label "Protein secondary structure image" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Image of protein secondary structure." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3153 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of protein secondary structure." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3153 . -:data_1712 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of the structure of a small chemical compound." ; + ns2:hasExactSynonym "Small molecule structure image" ; + ns2:hasNarrowSynonym "Chemical structure sketch", "Small molecule sketch" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "The molecular identifier and formula are typically included." ; - rdfs:subClassOf :data_1710 . + rdfs:subClassOf ns1:data_1710 . -:data_2127 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1598 ], - :data_0976 . - -:data_2162 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a genetic code." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1598 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1709 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1709 . -:data_2285 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_2355 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier for genetic elements in MIPS database." ; + ns2:hasExactSynonym "MIPS genetic element identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2354 ], - :data_0976 . - -:data_2366 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an RNA family, typically an entry from a RNA sequence classification database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2354 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1916 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more molecules." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1916 . -:data_2373 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2379 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869 . - -:data_2387 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869 . + +ns1:data_2387 a owl:Class ; rdfs:label "TAIR accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an entry from the TAIR database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2538 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the TAIR database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2538 a owl:Class ; rdfs:label "Mutation identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a mutation." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2576 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a mutation." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2576 a owl:Class ; rdfs:label "Toxin identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a toxin." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2852 ], - :data_1086 . - -:data_2618 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a toxin." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2852 ], + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2632 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein modification catalogued in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2639 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PWY[a-zA-Z_0-9]{2}\\-[0-9]{3}" ; + ns2:hasDefinition "Identifier of an entry from the Saccharomyces genome database (SGD)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2655 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an entry from the PubChem database." ; + ns2:hasExactSynonym "PubChem identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2700 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique identifier of a type or group of cells." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1038, - :data_2091 . - -:data_2718 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a protein domain (or other node) from the CATH database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1038, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2119, - :data_2901 . - -:data_2727 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an oligonucleotide from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2119, + ns1:data_2901 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2749 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDbXref "Moby:GeneAccessionList" ; + ns2:hasDefinition "An identifier of a promoter of a gene that is catalogued in a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2749 a owl:Class ; rdfs:label "Genome identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a particular genome." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2762 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a particular genome." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence motif report", "Sequence profile report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :data_2048 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_2048 . -:data_2785 a owl:Class ; +ns1:data_2785 a owl:Class ; rdfs:label "Virus ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2908, - :data_2913 . - -:data_2795 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2908, + ns1:data_2913 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2897 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of an open reading frame." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2576 . - -:data_2902 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a toxin (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2576 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1084 . - -:data_2905 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a data definition (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1084 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2812, - :data_2901 . - -:data_2915 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of lipids." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2812, + ns1:data_2901 . + +ns1:data_2915 a owl:Class ; rdfs:label "Gramene identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of a Gramene database entry." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . - -:data_2975 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a Gramene database entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . + +ns1: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:hasExactSynonym "Nucleic acid raw sequence", + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.23" ; + ns1:oldParent ns1:data_0848 ; + ns2:hasDefinition "A raw nucleic acid sequence." ; + ns2:hasExactSynonym "Nucleic acid raw sequence", "Nucleotide sequence (raw)", "Raw nucleic acid sequence", "Raw sequence (nucleic acid)" ; - oboInOwl:inSubset edam:obsolete ; - oboInOwl:replacedBy :data_2977 ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:data_2977 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:data_2978 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction." ; + ns2:hasExactSynonym "Enzyme kinetics annotation", "Reaction annotation" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_2979 a owl:Class ; +ns1:data_2979 a owl:Class ; rdfs:label "Peptide property" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concerning small peptides." ; - oboInOwl:hasExactSynonym "Peptide data" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2991 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning small peptides." ; + ns2:hasExactSynonym "Peptide data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . - -:data_3021 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc." ; + ns2:hasExactSynonym "Torsion angle data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns1:example "P43353|Q7M1G0|Q9C199|A5A6J6" ; + ns1: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}" ; + ns2:hasDefinition "Accession number of a UniProt (protein sequence) database entry." ; + ns2:hasExactSynonym "UniProt accession number", "UniProt entry accession", "UniProtKB accession", "UniProtKB accession number" ; - oboInOwl:hasNarrowSynonym "Swiss-Prot entry accession", + ns2:hasNarrowSynonym "Swiss-Prot entry accession", "TrEMBL entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1096, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1096, + ns1:data_2091 . -:data_3025 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a concept in an ontology of biological or bioinformatics concepts and relations." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2858 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2858 ], + ns1:data_0976 . -:data_3035 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0883 ], - :data_0976 . - -:data_3036 a owl:Class ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a molecular tertiary structure, typically an entry from a structure database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0883 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2082 ], - :data_0976 . - -:data_3113 a owl:Class ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of an array of numerical values, such as a comparison matrix." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2082 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Annotation on a biological sample, for example experimental factors and their values." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This might include compound and dose in a dose response experiment." ; - rdfs:subClassOf :data_2337 . + rdfs:subClassOf ns1:data_2337 . -:data_3153 a owl:Class ; +ns1:data_3153 a owl:Class ; rdfs:label "Protein image" ; - :created_in "beta13" ; - oboInOwl:hasDefinition "An image of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta13" ; + ns2:hasDefinition "An image of a protein." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_3241 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . + ns1:created_in "1.2" ; + ns2:hasDefinition "Mathematical model of a network, that contains biochemical kinetics." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . -:data_3354 a owl:Class ; +ns1: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 edam:data ; + ns1:created_in "1.4" ; + ns2:hasDefinition "A HMM transition matrix contains the probabilities of switching from one HMM state to another." ; + ns2:hasExactSynonym "HMM transition matrix" ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:data_2082 . -:data_3355 a owl:Class ; +ns1: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 edam:data ; + ns1:created_in "1.4" ; + ns2: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." ; + ns2:hasExactSynonym "HMM emission matrix" ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:data_2082 . -:data_3358 a owl:Class ; +ns1: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 edam:data ; - rdfs:subClassOf :data_0976 . + ns1:created_in "1.4" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a data format." ; + ns2:inSubset ns4:data ; + rdfs:subClassOf ns1:data_0976 . -:data_3667 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1622 ], - :data_0976 . - -:data_3716 a owl:Class ; + ns1:created_in "1.12" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of disease." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1622 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_3717 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "A human-readable collection of information concerning biosafety data." ; + ns2:hasExactSynonym "Biosafety information" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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", + ns1:created_in "1.14" ; + ns2:hasDefinition "A report about any kind of isolation of biological material." ; + ns2:hasNarrowSynonym "Geographic location", "Isolation source" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_3870 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3869 . + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3869 . -:data_3872 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_3869 . + ns1:created_in "1.22" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3869 . -:format_1210 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1207, - :format_2094 . - -:format_1333 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1207, + ns1:format_2094 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of results of a sequence database search using some variant of BLAST." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This includes score data, alignment data and summary table." ; - rdfs:subClassOf :format_2066, - :format_2330 . + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . -:format_1341 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2066, - :format_2330 . - -:format_1370 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Results format for searches of the InterPro database." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2066, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2072, - :format_2330 . - -:format_2006 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a hidden Markov model representation used by the HMMER package." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2072, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0872 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0872 ], + ns1:format_2350 . -:format_2020 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0971 ], - :format_2350 . - -:format_2037 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a full-text scientific article." ; + ns2:hasExactSynonym "Literature format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0971 ], + ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of phylogenetic continuous quantitative character data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1426 ], - :format_2036 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1426 ], + ns1:format_2036 . -:format_2065 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on the quality of a protein three-dimensional model." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1539 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1539 ], + ns1:format_2350 . -:format_2072 a owl:Class ; +ns1:format_2072 a owl:Class ; rdfs:label "Hidden Markov model format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of a hidden Markov model." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a hidden Markov model." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1364 ], - :format_2069 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1364 ], + ns1:format_2069 . -:format_2074 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format of a dirichlet distribution." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1347 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1347 ], + ns1:format_2350 . -:format_2077 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2078 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for secondary structure (predicted or real) of a protein molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used to specify range(s) of sequence positions." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1017 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1017 ], + ns1:format_2350 . -:format_2170 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for clusters of molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1235 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1235 ], + ns1:format_2350 . -:format_2172 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2170 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format used for clusters of nucleotide sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2170 . -:format_2181 a owl:Class ; +ns1:format_2181 a owl:Class ; rdfs:label "EMBL-like (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A text format resembling EMBL entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling EMBL entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the many non-standard EMBL-like text formats." ; - rdfs:subClassOf :format_2330, - :format_2543 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2543 . -:format_2196 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2195 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A serialisation format conforming to the Open Biomedical Ontologies (OBO) model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2195 . -:format_2205 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling GenBank entry (plain text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the non-standard GenBank-like text formats." ; - rdfs:subClassOf :format_2330, - :format_2559 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2559 . -:format_2546 a owl:Class ; +ns1:format_2546 a owl:Class ; rdfs:label "FASTA-like" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A format resembling FASTA format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling FASTA format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the many non-standard FASTA-like formats." ; - rdfs:subClassOf :format_1919 . + rdfs:subClassOf ns1:format_1919 . -:format_2555 a owl:Class ; +ns1:format_2555 a owl:Class ; rdfs:label "Alignment format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for molecular sequence alignment information." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for molecular sequence alignment information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921 . -:format_2557 a owl:Class ; +ns1:format_2557 a owl:Class ; rdfs:label "Phylogenetic tree format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "XML format for a phylogenetic tree." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "XML format for a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2006 . -:format_2559 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling GenBank entry (plain text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the non-standard GenBank-like formats." ; - rdfs:subClassOf :format_1919 . + rdfs:subClassOf ns1:format_1919 . -:format_2923 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_3003 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some variant of Mega format for (typically aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2919 . -:format_3166 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.0" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a report of information derived from a biological pathway or network." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2984 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2984 ], + ns1:format_2350 . -:format_3288 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_3287 . - -:format_3584 a owl:Class ; + ns1:created_in "1.3" ; + ns1:documentation ; + ns2:hasDefinition "The PED/MAP file describes data used by the Plink package." ; + ns2:hasExactSynonym "Plink PED/MAP" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_3287 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_3003 . -:format_3612 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation ; + ns2:hasDbXref ; + ns2:hasDefinition "Human ENCODE peak format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Format that covers both the broad peak format and narrow peak format from ENCODE." ; - rdfs:subClassOf :format_3585 . + rdfs:subClassOf ns1:format_3585 . -:format_3617 a owl:Class ; +ns1:format_3617 a owl:Class ; rdfs:label "Graph format" ; - :created_in "1.11" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Data format for graph data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3748 a owl:Class ; + ns1:created_in "1.11" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for graph data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1:format_3748 a owl:Class ; rdfs:label "Linked data format" ; - :citation , + ns1:citation , ; - :created_in "1.15" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDbXref ; - 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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3751 a owl:Class ; + ns1:created_in "1.15" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDbXref ; + ns2: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." ; + ns2:hasRelatedSynonym "Semantic Web format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1:format_3751 a owl:Class ; rdfs:label "DSV" ; - :created_in "1.16" ; - oboInOwl:hasBroadSynonym "Tabular format" ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "Tabular data represented as values in a text file delimited by some character." ; - oboInOwl:hasExactSynonym "Delimiter-separated values" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330 . - -:format_3824 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasBroadSynonym "Tabular format" ; + ns2:hasDbXref ; + ns2:hasDefinition "Tabular data represented as values in a text file delimited by some character." ; + ns2:hasExactSynonym "Delimiter-separated values" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330 . + +ns1: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 "Nuclear magnetic resonance spectroscopy data format" ; - oboInOwl:hasNarrowSynonym "NMR peak assignment data", + ns1:created_in "1.20" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment." ; + ns2:hasExactSynonym "Nuclear magnetic resonance spectroscopy data format" ; + ns2:hasNarrowSynonym "NMR peak assignment data", "NMR processed data format", "NMR raw data format", "Processed NMR data format", "Raw NMR data format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3488 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3488 ], + ns1:format_2350 . -:format_3866 a owl:Class ; +ns1: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:hasNarrowSynonym "CG trajectory formats", + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "File format to store trajectory information for a 3D structure ." ; + ns2:hasNarrowSynonym "CG trajectory formats", "MD trajectory formats", "NA trajectory formats", "Protein trajectory formats" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3870 ], + ns1:format_2350 . -:has_function a owl:ObjectProperty ; +ns1:has_function a owl:ObjectProperty ; rdfs:label "has function" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A has_function B' defines for the subject A, that it has the object B as its function." ; + ns2:hasRelatedSynonym "OBO_REL:bearer_of" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:range ns1:operation_0004 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000306\"", "http://wsio.org/has_function", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#has-quality\"" ; - owl:inverseOf :is_function_of . + owl:inverseOf ns1:is_function_of . -:operation_0224 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3071 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search or query a data resource and retrieve entries and / or annotation." ; + ns2:hasExactSynonym "Database retrieval" ; + ns2:hasNarrowSynonym "Query" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3071 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0006 ], - :operation_2409 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0006 ], + ns1:operation_2409 . -:operation_0237 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find and/or analyse repeat sequences in (typically nucleotide) sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], + ns1:operation_2403 . -:operation_0239 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s)." ; + ns2:hasExactSynonym "Motif scanning", "Sequence signature detection", "Sequence signature recognition" ; - oboInOwl:hasNarrowSynonym "Motif detection", + ns2:hasNarrowSynonym "Motif detection", "Motif recognition", "Motif search", "Sequence motif detection", "Sequence motif search", "Sequence profile search" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0858 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0253, - :operation_2404 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0858 ], + ns1:operation_0253, + ns1:operation_2404 . -:operation_0247 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2406 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2406 . -:operation_0278 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc)." ; + ns2:hasNarrowSynonym "RNA shape prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0880 ], + ns1:operation_0415, + ns1:operation_0475, + ns1:operation_2439 . -:operation_0282 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Functional mapping", "Genetic cartography", "Genetic map construction", "Genetic map generation", "Linkage mapping" ; - oboInOwl:hasNarrowSynonym "QTL mapping" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "QTL mapping" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1278 ], + ns1:operation_0283, + ns1:operation_2520 . -:operation_0283 a owl:Class ; +ns1:operation_0283 a owl:Class ; rdfs:label "Linkage analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse genetic linkage." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse genetic linkage." ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0927 ], + ns1:operation_2478 . -:operation_0291 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences." ; + ns2:hasExactSynonym "Sequence cluster construction", "Sequence cluster generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1235 ], + ns1:operation_2451, + ns1:operation_3429, + ns1:operation_3432 . -:operation_0294 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0292 . - -:operation_0298 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align molecular sequences using sequence and structural information." ; + ns2:hasExactSynonym "Sequence alignment (structure-based)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0292 . + +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0300 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0292 ; + ns2:hasDefinition "Align sequence profiles (representing sequence alignments)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0300 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0299 a owl:Class ; +ns1: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 edam:obsolete ; - oboInOwl:replacedBy :operation_0295 ; + ns1:created_in "beta12orEarlier" ; + ns1:obsolete_since "1.19" ; + ns1:oldParent ns1:operation_0295 ; + ns2:hasDefinition "Align structural (3D) profiles or templates (representing structures or structure alignments)." ; + ns2:inSubset ns4:obsolete ; + ns2:replacedBy ns1:operation_0295 ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated "true" . -:operation_0303 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Domain prediction", "Fold prediction", "Protein domain prediction", "Protein fold prediction", "Protein fold recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2406, + ns1:operation_2479, + ns1:operation_2928, + ns1:operation_2997, + ns1:operation_3092 . -:operation_0314 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2: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", + ns2:hasNarrowSynonym "Non-coding RNA profiling", "Protein profiling", "RNA profiling", "mRNA profiling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Gene expression profiling generates some sort of gene expression profile, for example from microarray data." ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2495 . + rdfs:subClassOf ns1:operation_2495 . -:operation_0315 a owl:Class ; +ns1:operation_0315 a owl:Class ; rdfs:label "Expression profile comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Comparison of expression profiles." ; - oboInOwl:hasNarrowSynonym "Gene expression comparison", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Comparison of expression profiles." ; + ns2:hasNarrowSynonym "Gene expression comparison", "Gene expression profile comparison" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495 . -:operation_0322 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2425, - :operation_2480 . - -:operation_0331 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: CorrectedPDBasXML" ; + ns2:hasDefinition "Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc." ; + ns2:hasNarrowSynonym "Protein model refinement" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2425, + ns1:operation_2480 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function." ; + ns2:hasExactSynonym "Variant functional prediction" ; + ns2:hasNarrowSynonym "Protein SNP mapping", "Protein mutation modelling", "Protein stability change prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0199 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0199 ], - :operation_2423 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_2423 . -:operation_0339 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_2421 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:operation_2421 . -:operation_0369 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Cut (remove) characters or a region from a molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231 . -:operation_0389 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc." ; + ns2:hasExactSynonym "Protein-nucleic acid binding site analysis" ; + ns2:hasNarrowSynonym "Protein-DNA interaction analysis", "Protein-RNA interaction analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_1777 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], + ns1:operation_1777 . -:operation_0416 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict antigenic determinant sites (epitopes) in protein sequences." ; + ns2:hasExactSynonym "Antibody epitope prediction", "Epitope prediction" ; - oboInOwl:hasNarrowSynonym "B cell epitope mapping", + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], + ns1:operation_2429, + ns1:operation_3092 . -:operation_0440 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Methods might recognize CG content, CpG islands, splice sites, polyA signals etc." ; - rdfs:subClassOf :operation_0438 . + rdfs:subClassOf ns1:operation_0438 . -:operation_0478 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Model the structure of a protein in complex with a small molecule or another macromolecule." ; + ns2:hasExactSynonym "Docking simulation", "Macromolecular docking" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2877 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2877 ], - :operation_1777, - :operation_2480 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1461 ], + ns1:operation_1777, + ns1:operation_2480 . -:operation_0484 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "SNP calling", "SNP discovery", "Single nucleotide polymorphism detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc." ; - rdfs:subClassOf :operation_3227 . + rdfs:subClassOf ns1:operation_3227 . -:operation_0491 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align exactly two molecular sequences." ; + ns2:hasExactSynonym "Pairwise alignment" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1381 ], + ns1:operation_0292 . -:operation_1844 a owl:Class ; +ns1:operation_1844 a owl:Class ; rdfs:label "Protein geometry validation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: ImproperQualityMax", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2: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." ; + ns2:hasNarrowSynonym "Ramachandran plot validation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0321 . + rdfs:subClassOf ns1:operation_0321 . -:operation_2419 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], - :operation_2423, - :operation_3095 . - -:operation_2425 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict oligonucleotide primers or probes." ; + ns2:hasExactSynonym "Primer and probe prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], + ns1:operation_2423, + ns1:operation_3095 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2464 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Refine or optimise some data model." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict protein-protein binding sites." ; + ns2:hasExactSynonym "Protein-protein binding site detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_2575 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_2575 . -:operation_2488 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare protein secondary structures." ; + ns2:hasExactSynonym "Protein secondary structure", "Secondary structure comparison (protein)" ; - oboInOwl:hasNarrowSynonym "Protein secondary structure alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2416, - :operation_2997 . + ns2:hasNarrowSynonym "Protein secondary structure alignment" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2416, + ns1:operation_2997 . -:operation_2499 a owl:Class ; +ns1: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 edam:edam, - edam: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 ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences." ; + ns2:hasExactSynonym "Splicing model analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], + ns1:operation_2423, + ns1:operation_2426, + ns1:operation_2454 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise clustered expression data using a tree diagram." ; + ns2:hasExactSynonym "Dendrogram plotting", "Dendrograph plotting", "Dendrograph visualisation", "Expression data tree or dendrogram rendering", "Expression data tree visualisation" ; - oboInOwl:hasNarrowSynonym "Microarray 2-way dendrogram rendering", + ns2:hasNarrowSynonym "Microarray 2-way dendrogram rendering", "Microarray checks view rendering", "Microarray matrix tree plot rendering", "Microarray tree or dendrogram rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0571 . + rdfs:subClassOf ns1:operation_0571 . -:operation_2962 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate codon usage bias, e.g. generate a codon usage bias plot." ; + ns2:hasNarrowSynonym "Codon usage bias plotting" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2865 ], - :operation_0286 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2865 ], + ns1:operation_0286 . -:operation_3211 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Generate an index of a genome sequence." ; + ns2:hasNarrowSynonym "Burrows-Wheeler", "Genome indexing (Burrows-Wheeler)", "Genome indexing (suffix arrays)", "Suffix arrays" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3210 ], + ns1:operation_0227, + ns1:operation_3918 . -:operation_3437 a owl:Class ; +ns1:operation_3437 a owl:Class ; rdfs:label "Article comparison" ; - :created_in "1.6" ; - oboInOwl:hasDefinition "Compare two or more scientific articles." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "1.6" ; + ns2:hasDefinition "Compare two or more scientific articles." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3068 ], - :operation_2424 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], + ns1:operation_2424 . -:operation_3465 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_0004 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:operation_0004 . -:operation_3501 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasExactSynonym "Enrichment", "Over-representation analysis" ; - oboInOwl:hasNarrowSynonym "Functional enrichment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Functional enrichment" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3753 ], + ns1:operation_2945 . -:operation_3634 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3630 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification without the use of chemical tags." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3630 . -:operation_3680 a owl:Class ; +ns1:operation_3680 a owl:Class ; rdfs:label "RNA-Seq analysis" ; - :created_in "1.13" ; - oboInOwl:hasDefinition "Analyze data from RNA-seq experiments." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2495, - :operation_3921 . - -:operation_3778 a owl:Class ; + ns1:created_in "1.13" ; + ns2:hasDefinition "Analyze data from RNA-seq experiments." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2495, + ns1:operation_3921 . + +ns1: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", + ns1:created_in "1.16" ; + ns2: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)." ; + ns2:hasNarrowSynonym "Article annotation", "Literature annotation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3068 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_3779 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_3671 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_3671 ], - :operation_0226 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_3779 ], + ns1:operation_0226 . -:operation_3799 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_3925 a owl:Class ; + ns1:created_in "1.17" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Counting and measuring experimentally determined observations into quantities." ; + ns2:hasExactSynonym "Quantitation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Render (visualise) a network - typically a biological network of some sort." ; + ns2:hasExactSynonym "Network rendering" ; + ns2: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 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2600 ], + ns1:operation_0337, + ns1:operation_3927 . -:operation_3935 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.24" ; + ns2: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." ; + ns2:hasExactSynonym "Dimension reduction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_3438 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3438 . -:topic_0091 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.6 Bioinformatics" ; + ns2:hasDefinition "The archival, curation, processing and analysis of complex biological data." ; + ns2:hasHumanReadableId "Bioinformatics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0605 . -:topic_0140 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export." ; + ns2:hasHumanReadableId "Protein_targeting_and_localisation" ; + ns2:hasNarrowSynonym "Protein localisation", "Protein sorting", "Protein targeting" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0108 . + rdfs:subClassOf ns1:topic_0108 . -:topic_0166 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules." ; + ns2:hasExactSynonym "Protein 3D motifs" ; + ns2:hasHumanReadableId "Protein_structural_motifs_and_surfaces" ; + ns2:hasNarrowSynonym "Protein structural features", "Protein structural motifs", "Protein surfaces", "Structural motifs" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_2814 . + rdfs:subClassOf ns1:topic_2814 . -:topic_0194 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Phylogenomics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0080, - :topic_0622 . + rdfs:subClassOf ns1:topic_0080, + ns1:topic_0622 . -:topic_0218 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "NLP" ; + ns2:hasHumanReadableId "Natural_language_processing" ; + ns2:hasNarrowSynonym "BioNLP", "Literature mining", "Text analytics", "Text data mining", "Text mining" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , , ; - rdfs:subClassOf :topic_3068, - :topic_3316 . + rdfs:subClassOf ns1:topic_3068, + ns1:topic_3316 . -:topic_0219 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary." ; + ns2:hasHumanReadableId "Data_submission_annotation_and_curation" ; + ns2:hasNarrowSynonym "Data curation", "Data provenance", "Database curation" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3071 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3071 . -:topic_0780 a owl:Class ; +ns1:topic_0780 a owl:Class ; rdfs:label "Plant biology" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasBroadSynonym "Plant science" ; - oboInOwl:hasDbXref "VT 1.5.10 Botany", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Plant science" ; + ns2: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", + ns2:hasDefinition "Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation." ; + ns2:hasExactSynonym "Botany", "Plant", "Plant science", "Plants" ; - oboInOwl:hasHumanReadableId "Plant_biology" ; - oboInOwl:hasNarrowSynonym "Plant anatomy", + ns2:hasHumanReadableId "Plant_biology" ; + ns2:hasNarrowSynonym "Plant anatomy", "Plant cell biology", "Plant ecology", "Plant genetics", "Plant physiology" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The resource may be specific to a plant, a group of plants or all plants." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_0821 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc." ; + ns2:hasExactSynonym "Enzymology" ; + ns2:hasHumanReadableId "Enzymes" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078 . + rdfs:subClassOf ns1:topic_0078 . -:topic_2818 a owl:Class ; +ns1: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 edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1: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)." ; + ns1:obsolete_since "1.17" ; + ns1:oldParent ns1:topic_0621 ; + ns2:consider ns1:topic_0621 ; + ns2:hasDefinition "Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation." ; + ns2:inSubset ns4: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_3336 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The discovery and design of drugs or potential drug compounds." ; + ns2:hasHumanReadableId "Drug_discovery" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3314, + ns1:topic_3376 . -:topic_3371 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3314 . - -:topic_3377 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The use of chemistry to create new compounds." ; + ns2:hasHumanReadableId "Synthetic_chemistry" ; + ns2:hasNarrowSynonym "Synthetic organic chemistry" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3314 . + +ns1: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:hasHumanReadableId "Safety_sciences" ; - oboInOwl:hasNarrowSynonym "Drug safety" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3376 . - -:topic_3500 a owl:Class ; + ns1:created_in "1.4" ; + ns2:hasDefinition "The safety (or lack) of drugs and other medical interventions." ; + ns2:hasHumanReadableId "Safety_sciences" ; + ns2:hasNarrowSynonym "Drug safety" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3376 . + +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDbXref "VT 1.5.29 Zoology" ; + ns2:hasDefinition "Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation." ; + ns2:hasExactSynonym "Animal", "Animal biology", "Animals", "Metazoa" ; - oboInOwl:hasHumanReadableId "Zoology" ; - oboInOwl:hasNarrowSynonym "Animal genetics", + ns2:hasHumanReadableId "Zoology" ; + ns2:hasNarrowSynonym "Animal genetics", "Animal physiology", "Entomology" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The study of the animal kingdom." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:comment_handle a owl:AnnotationProperty . +ns1:comment_handle a owl:AnnotationProperty . -:data_0880 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:RNAStructML" ; + ns2:hasDefinition "An informative report of secondary structure (predicted or real) of an RNA molecule." ; + ns2:hasExactSynonym "Secondary structure (RNA)" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:data_1465 . -:data_0888 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_0927 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about the linkage of alleles." ; + ns2:hasExactSynonym "Gene annotation (linkage)" ; + ns2:hasNarrowSynonym "Linkage disequilibrium (report)" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2084 . -:data_0958 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:data_0972 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information resulting from text mining." ; + ns2:hasExactSynonym "Text mining output" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2048, + ns1:data_2526 . -:data_0984 a owl:Class ; +ns1:data_0984 a owl:Class ; rdfs:label "Molecule name" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Name of a specific molecule." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0982, - :data_2099 . - -:data_0991 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name of a specific molecule." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0982, + ns1:data_2099 . + +ns1:data_0991 a owl:Class ; rdfs:label "Chemical registry number" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Unique registry number of a chemical compound." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2894 . - -:data_1006 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique registry number of a chemical compound." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2894 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0994 . - -:data_1015 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "String of one or more ASCII characters representing an amino acid." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0994 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3034 . - -:data_1038 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3034 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein structural domain." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1468 ], + ns1:data_0976 . -:data_1050 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099 . - -:data_1063 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name (or part of a name) of a file (of any type)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2044 ], - :data_0976 . - -:data_1068 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of molecular sequence(s) or entries from a molecular sequence database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2044 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0872 ], - :data_0976 . - -:data_1082 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a phylogenetic tree for example from a phylogenetic tree database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0872 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2600 ], - :data_0976 . - -:data_1088 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of biological pathways or networks." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2600 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0971 ], - :data_0976 . - -:data_1093 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Unique identifier of a scientific article." ; + ns2:hasExactSynonym "Article identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0971 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1063 . - -:data_1098 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A persistent, unique identifier of a molecular sequence database entry." ; + ns2:hasExactSynonym "Sequence accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1063 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2362 . - -:data_1103 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "(NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+" ; + ns2:hasDefinition "Accession number of a RefSeq database entry." ; + ns2:hasExactSynonym "RefSeq ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2362 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091 . - -:data_1131 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091 . + +ns1:data_1131 a owl:Class ; rdfs:label "Protein family name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a protein family." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1075, - :data_2099 . - -:data_1150 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a protein family." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1075, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3667 . - -:data_1176 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of an entry from a database of disease." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3667 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1087, - :data_2091 . - -:data_1233 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[0-9]{7}|GO:[0-9]{7}" ; + ns2:hasDefinition "An identifier of a concept from The Gene Ontology." ; + ns2:hasExactSynonym "GO concept identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1087, + ns1:data_2091 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0850 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0850 . -:data_1254 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2955 . - -:data_1397 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis." ; + ns2:hasExactSynonym "Sequence properties report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2955 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2137 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for opening a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2137 . -:data_1398 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2137 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for extending a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2137 . -:data_1426 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Continuous quantitative data that may be read during phylogenetic tree calculation." ; + ns2:hasExactSynonym "Phylogenetic continuous quantitative characters", "Quantitative traits" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0871 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0871 . -:data_1439 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis." ; + ns2:hasExactSynonym "Phylogenetic tree report (DNA substitution model)", "Sequence alignment report (DNA substitution model)", "Substitution model" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . -:data_1467 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1460 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1460 . -:data_1468 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for the tertiary (3D) structure of a protein domain." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0736 ], - :data_1460 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0736 ], + ns1:data_1460 . -:data_1499 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0892 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0892 . -:data_1534 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An report on allergenicity / immunogenicity of peptides and proteins." ; + ns2:hasExactSynonym "Peptide immunogenicity", "Peptide immunogenicity report" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0897 . -:data_1710 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2968 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of one or more molecular tertiary (3D) structures." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2968 . -:data_1855 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2769 . - -:data_1883 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a clone (cloned molecular sequence) from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2769 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2093 . - -:data_1917 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:DescribedLink" ; + ns2:hasDefinition "A URI along with annotation describing the data found at the address." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2093 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2080 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data for an atom (in a molecular structure)." ; + ns2:hasExactSynonym "General atomic property" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report of hits from searching a database of some type." ; + ns2:hasExactSynonym "Database hits", "Search results" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_2101 a owl:Class ; +ns1:data_2101 a owl:Class ; rdfs:label "User ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An identifier of a software end-user (typically a person)." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2118 . - -:data_2118 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of a software end-user (typically a person)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2118 . + +ns1:data_2118 a owl:Class ; rdfs:label "Person identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier of a software end-user (typically a person)." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2137 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a software end-user (typically a person)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1394 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A penalty for introducing or extending a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1394 . -:data_2346 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an entry from the UniRef database." ; + ns2:hasExactSynonym "UniRef cluster id", "UniRef entry accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1112, - :data_2091 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1112, + ns1:data_2091 . -:data_2353 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning or derived from an ontology." ; + ns2:hasExactSynonym "Ontological data" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:data_0006 . -:data_2362 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0849 ], - :data_1093 . - -:data_2536 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of a nucleotide or protein sequence database entry." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0849 ], + ns1:data_1093 . + +ns1:data_2536 a owl:Class ; rdfs:label "Mass spectrometry data" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concerning a mass spectrometry measurement." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_3108 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning a mass spectrometry measurement." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_3108 . -:data_2537 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Raw data from experimental methods for determining protein structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_3108 . -:data_2649 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2769 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "PA[0-9]+" ; + ns2:hasDefinition "Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2769 a owl:Class ; rdfs:label "Transcript ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a RNA transcript." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1276 ], - :data_2119, - :data_2901 . - -:data_2855 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a RNA transcript." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1276 ], + ns1:data_2119, + ns1:data_2901 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2082 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2082 . -:data_2865 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0914 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0914 . -:data_2872 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2093 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2093 . -:data_2893 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2655 . - -:data_2903 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a type or group of cells (catalogued in a database)." ; + ns2:hasExactSynonym "Cell type ID" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2655 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2749 . - -:data_2911 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of a particular genome (in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2749 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1077, - :data_2907 . - -:data_2917 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of transcription factors or binding sites." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1077, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2109 . - -:data_2992 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An identifier of an entity from the ConsensusPathDB database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2109 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1710, - :data_3153 . - -:data_3034 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An image of protein structure." ; + ns2:hasExactSynonym "Structure image (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1710, + ns1:data_3153 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1255 ], - :data_0976 . - -:data_3110 a owl:Class ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of molecular sequence feature(s)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Such data as found in Affymetrix CEL or GPR files." ; - rdfs:subClassOf :data_3108, - :data_3117 . + rdfs:subClassOf ns1:data_3108, + ns1:data_3117 . -:data_3112 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns2:hasDefinition "The final processed (normalised) data for a set of hybridisations in a microarray experiment." ; + ns2:hasExactSynonym "Gene expression data matrix", "Normalised microarray data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This combines data from all hybridisations." ; - rdfs:subClassOf :data_2082, - :data_2603 . + rdfs:subClassOf ns1:data_2082, + ns1:data_2603 . -:data_3117 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2603 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Data concerning the hybridisations measured during a microarray experiment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2603 . -:data_3148 a owl:Class ; +ns1: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)", + ns1:created_in "beta13" ; + ns2:hasBroadSynonym "Nucleic acid classification" ; + ns2: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." ; + ns2:hasExactSynonym "Gene annotation (homology information)", "Gene annotation (homology)", "Gene family annotation", "Gene homology (report)", "Homology information" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This includes reports on on gene homologues between species." ; - rdfs:subClassOf :data_2084 . + rdfs:subClassOf ns1:data_2084 . -:data_3210 a owl:Class ; +ns1:data_3210 a owl:Class ; rdfs:label "Genome index" ; - :created_in "1.1" ; - oboInOwl:hasDefinition "An index of a genome sequence." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "1.1" ; + ns2:hasDefinition "An index of a genome sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0955 . -:data_3732 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2099 . + ns1:created_in "1.15" ; + ns2:hasDefinition "Data concerning a sequencing experiment, that may be specified as an input to some tool." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2099 . -:data_3753 a owl:Class ; +ns1: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", + ns1:created_in "1.16" ; + ns2:hasDefinition "A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data." ; + ns2:hasExactSynonym "Enrichment report", "Over-representation report" ; - oboInOwl:hasNarrowSynonym "Functional enrichment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns2:hasNarrowSynonym "Functional enrichment report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_3779 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2526, - :data_3671 . - -:data_3869 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526, + ns1:data_3671 . + +ns1:data_3869 a owl:Class ; rdfs:label "Simulation" ; - :created_in "1.22" ; - oboInOwl:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules. Tipically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "1.22" ; + ns2:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules. Tipically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:format_1208 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . -:format_1212 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence" ; - rdfs:subClassOf :format_1207 . + rdfs:subClassOf ns1:format_1207 . -:format_1213 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence" ; - rdfs:subClassOf :format_1207 . + rdfs:subClassOf ns1:format_1207 . -:format_1963 a owl:Class ; +ns1:format_1963 a owl:Class ; rdfs:label "UniProtKB format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "UniProtKB entry sequence format." ; - oboInOwl:hasExactSynonym "SwissProt format", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "UniProtKB entry sequence format." ; + ns2:hasExactSynonym "SwissProt format", "UniProt format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2187 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2187 . -:format_1975 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2305 . - -:format_2054 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns1:ontology_used ; + ns2:hasDbXref ; + ns2:hasDefinition "Generic Feature Format version 3 (GFF3) of sequence features." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2305 . + +ns1:format_2054 a owl:Class ; rdfs:label "Protein interaction format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasBroadSynonym "Molecular interaction format" ; - oboInOwl:hasDefinition "Format for molecular interaction data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0906 ], - :format_2350 . - -:format_2055 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Molecular interaction format" ; + ns2:hasDefinition "Format for molecular interaction data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0906 ], + ns1:format_2350 . + +ns1:format_2055 a owl:Class ; rdfs:label "Sequence assembly format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format for sequence assembly data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for sequence assembly data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0925 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0925 ], + ns1:format_2350 . -:format_2068 a owl:Class ; +ns1:format_2068 a owl:Class ; rdfs:label "Sequence motif format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format of a sequence motif." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a sequence motif." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1353 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1353 ], + ns1:format_2350 . -:format_2069 a owl:Class ; +ns1:format_2069 a owl:Class ; rdfs:label "Sequence profile format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format of a sequence profile." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a sequence profile." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1354 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1354 ], + ns1:format_2350 . -:format_2155 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2158 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for map of repeats in molecular (typically nucleotide) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2197 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for report on restriction enzyme recognition sites in nucleotide sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2195, - :format_2376 . - -:format_2204 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A serialisation format conforming to the Web Ontology Language (OWL) model." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2195, + ns1:format_2376 . + +ns1:format_2204 a owl:Class ; rdfs:label "EMBL format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An XML format for EMBL entries." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An XML format for EMBL entries." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This is a placeholder for other more specific concepts. It should not normally be used for annotation." ; - rdfs:subClassOf :format_2558 . + rdfs:subClassOf ns1:format_2558 . -:format_2305 a owl:Class ; +ns1:format_2305 a owl:Class ; rdfs:label "GFF" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "GFF feature format (of indeterminate version)." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2206, - :format_2330 . - -:format_2543 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "GFF feature format (of indeterminate version)." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2206, + ns1:format_2330 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A format resembling EMBL entry (plain text) format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for the many non-standard EMBL-like formats." ; - rdfs:subClassOf :format_1919 . + rdfs:subClassOf ns1:format_1919 . -:format_2547 a owl:Class ; +ns1:format_2547 a owl:Class ; rdfs:label "uniprotkb-like format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A sequence format resembling uniprotkb entry format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1919, - :format_2548 . - -:format_3475 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A sequence format resembling uniprotkb entry format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1919, + ns1:format_2548 . + +ns1:format_3475 a owl:Class ; rdfs:label "TSV" ; - :created_in "1.7" ; - :file_extension "tsv|tab" ; - :media_type ; - oboInOwl:hasDbXRef , + ns1:created_in "1.7" ; + ns1:file_extension "tsv|tab" ; + ns1:media_type ; + ns2:hasDbXRef , ; - oboInOwl:hasDefinition "Tabular data represented as tab-separated values in a text file." ; - oboInOwl:hasExactSynonym "Tab-delimited", + ns2:hasDefinition "Tabular data represented as tab-separated values in a text file." ; + ns2:hasExactSynonym "Tab-delimited", "Tab-separated values" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_3751 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3751 . -:format_3486 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_3706 a owl:Class ; + ns1:created_in "1.7" ; + ns2:hasDefinition "Some format based on the GCG format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.14" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for biodiversity data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3707 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3707 ], + ns1:format_2350 . -:format_3750 a owl:Class ; +ns1:format_3750 a owl:Class ; rdfs:label "YAML" ; - :created_in "1.15" ; - :documentation ; - :file_extension "yaml|yml" ; - oboInOwl:hasDbXref , + ns1:created_in "1.15" ; + ns1:documentation ; + ns1:file_extension "yaml|yml" ; + ns2: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" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language." ; + ns2:hasExactSynonym "YAML Ain't Markup Language" ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :format_1915 . + rdfs:subClassOf ns1:format_1915 . -:format_3884 a owl:Class ; +ns1: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." ; + ns1:created_in "1.22" ; + ns2: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. Tipically, 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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3872 ], + ns1:format_2350 . -:is_input_of a owl:ObjectProperty ; +ns1:is_input_of a owl:ObjectProperty ; rdfs:label "is input of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:participates_in" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:operation_0004 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000295\"", "http://wsio.org/is_input_of" . -:is_output_of a owl:ObjectProperty ; +ns1:is_output_of a owl:ObjectProperty ; rdfs:label "is output of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:participates_in" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:data_0006 ; + rdfs:range ns1:operation_0004 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000312\"", "http://wsio.org/is_output_of" . -:is_topic_of a owl:ObjectProperty ; +ns1:is_topic_of a owl:ObjectProperty ; rdfs:label "is topic of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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)." ; + ns2:hasRelatedSynonym "OBO_REL:quality_of" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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:domain ns1:topic_0003 ; rdfs:range [ a owl:Class ; - owl:unionOf ( :data_0006 :operation_0004 ) ] ; + owl:unionOf ( ns1:data_0006 ns1:operation_0004 ) ] ; rdfs:seeAlso "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" . -:operation_0227 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Generate an index of (typically a file of) biological data." ; + ns2:hasExactSynonym "Data indexing", "Database indexing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0955 ], - :operation_0004 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0955 ], + ns1:operation_0004 . -:operation_0233 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0231, - :operation_3434 . - -:operation_0269 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Convert a molecular sequence from one type to another." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0231, + ns1:operation_3434 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0267, - :operation_0270 . - -:operation_0300 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0267, + ns1:operation_0270 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment." ; + ns2:hasNarrowSynonym "Profile-profile alignment", "Profile-to-profile alignment", "Sequence-profile alignment", "Sequence-to-profile alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_0292 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1354 ], + ns1:operation_0292 . -:operation_0361 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotate a molecular sequence record with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0849 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0849 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0849 ], - :operation_0226 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0849 ], + ns1:operation_0226 . -:operation_0400 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate pH-dependent properties from pKa calculations of a protein sequence." ; + ns2:hasExactSynonym "Protein pH-dependent property calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0123 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0123 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0897 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0897 ], + ns1:operation_0250 . -:operation_0443 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets." ; + ns2:hasExactSynonym "Functional RNA identification", "Transcriptional regulatory element prediction (trans)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0659 ], + ns1:operation_0438 . -:operation_0477 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Build a three-dimensional protein model based on known (for example homologs) structures." ; + ns2:hasExactSynonym "Comparative modelling", "Homology modelling", "Homology structure modelling", "Protein structure comparative modelling" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2275 ], + ns1:operation_0474, + ns1:operation_2426 . -:operation_1850 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign cysteine bonding state and disulfide bond partners in protein structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0130 ], - :operation_0320 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_0320 . -:operation_2404 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403 . - -:operation_2416 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse molecular sequence motifs." ; + ns2:hasExactSynonym "Sequence motif processing" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse protein secondary structure data." ; + ns2:hasExactSynonym "Secondary structure analysis (protein)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2956 ], - :operation_2406 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2956 ], + ns1:operation_2406 . -:operation_2439 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Process (read and / or write) RNA secondary structure data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :operation_2481 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:operation_2481 . -:operation_2497 a owl:Class ; +ns1: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" ; - oboInOwl:consider :operation_3927, - :operation_3928 ; - oboInOwl:hasDefinition "Generate, process or analyse a biological pathway or network." ; - oboInOwl:inSubset edam:obsolete ; + ns1:created_in "beta12orEarlier" ; + ns1:deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + ns1:obsolete_since "1.24" ; + ns2:consider ns1:operation_3927, + ns1:operation_3928 ; + ns2:hasDefinition "Generate, process or analyse a biological pathway or network." ; + ns2:inSubset ns4:obsolete ; rdfs:subClassOf owl:DeprecatedClass ; owl:deprecated true . -:operation_2990 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2995 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403, - :operation_2990 . - -:operation_2998 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign molecular sequence(s) to a group or category." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403, + ns1:operation_2990 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more nucleic acids to identify similarities." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3192 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Cut (remove) the end from a molecular sequence." ; + ns2:hasExactSynonym "Trimming" ; + ns2:hasNarrowSynonym "Barcode sequence removal", "Trim ends", "Trim to reference", "Trim vector" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment """This includes ennd trimming @@ -34148,195 +34148,195 @@ Trim sequences (typically from an automated DNA sequencer) to remove the sequenc 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 . + rdfs:subClassOf ns1:operation_0369 . -:operation_3434 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_3443 a owl:Class ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Convert a data set from one form to another." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.7" ; + ns2:hasBroadSynonym "Image processing" ; + ns2:hasDefinition "The analysis of a image (typically a digital image) of some type in order to extract information from it." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3382 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3382 ], + ns1:operation_2945 . -:operation_3445 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2480 . + ns1:created_in "1.7" ; + ns2:hasDefinition "Analysis of data from a diffraction experiment." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2480 . -:operation_3630 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214, - :operation_3799 . - -:operation_3646 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Technique for determining the amount of proteins in a sample." ; + ns2:hasExactSynonym "Protein quantitation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214, + ns1:operation_3799 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2421, - :operation_3631 . - -:operation_3760 a owl:Class ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2421, + ns1:operation_3631 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:topic_0099 a owl:Class ; + ns1:created_in "1.16" ; + ns2:hasDefinition "Operations concerning the handling and use of other tools." ; + ns2:hasNarrowSynonym "Endpoint management" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "RNA sequences and structures." ; + ns2:hasHumanReadableId "RNA" ; + ns2:hasNarrowSynonym "Small RNA" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0077 . + rdfs:subClassOf ns1:topic_0077 . -:topic_0610 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.15 Ecology" ; + ns2:hasDefinition "The ecological and environmental sciences and especially the application of information technology (ecoinformatics)." ; + ns2:hasHumanReadableId "Ecology" ; + ns2:hasNarrowSynonym "Computational ecology", "Ecoinformatics", "Ecological informatics", "Ecosystem science" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D004777" ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_0625 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Genotype and phenotype resources", "Genotype-phenotype", "Genotype-phenotype analysis" ; - oboInOwl:hasHumanReadableId "Genotype_and_phenotype" ; - oboInOwl:hasNarrowSynonym "Genotype", + ns2:hasHumanReadableId "Genotype_and_phenotype" ; + ns2:hasNarrowSynonym "Genotype", "Genotyping", "Phenotype", "Phenotyping" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3125 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns2:hasAlternativeId ns1:data_3125 ; + ns2:hasDefinition "Nucleic acids binding to some other molecule." ; + ns2:hasHumanReadableId "DNA_binding_sites" ; + ns2:hasNarrowSynonym "Matrix-attachment region", "Matrix/scaffold attachment region", "Nucleosome exclusion sequences", "Restriction sites", "Ribosome binding sites", "Scaffold-attachment region" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0654, + ns1:topic_3511 . -:topic_3295 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Epigenetics" ; + ns2:hasNarrowSynonym "DNA methylation", "Histone modification", "Methylation profiles" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3053 . -:topic_3315 a owl:Class ; +ns1:topic_3315 a owl:Class ; rdfs:label "Mathematics" ; - :created_in "1.3" ; - oboInOwl:hasDbXref "VT 1.1.99 Other", + ns1:created_in "1.3" ; + ns2: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", + ns2:hasDefinition "The study of numbers (quantity) and other topics including structure, space, and change." ; + ns2:hasExactSynonym "Maths" ; + ns2:hasHumanReadableId "Mathematics" ; + ns2:hasNarrowSynonym "Dynamic systems", "Dynamical systems", "Dynymical systems theory", "Graph analytics", "Monte Carlo methods", "Multivariate analysis" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3511 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasHumanReadableId "Nucleic_acid_sites_features_and_motifs" ; + ns2:hasNarrowSynonym "Nucleic acid functional sites", "Nucleic acid sequence features", "Primer binding sites", "Sequence tagged sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0077, + ns1:topic_0160 . -:topic_3520 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2:hasDefinition "Proteomics experiments." ; + ns2:hasHumanReadableId "Proteomics_experiment" ; + ns2:hasNarrowSynonym "2D PAGE experiment", "DIA", "Data-independent acquisition", "MS", @@ -34345,905 +34345,905 @@ Trim sequences (typically from an automated DNA sequencer) to remove sequence-sp "Mass spectrometry experiments", "Northern blot experiment", "Spectrum demultiplexing" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:topic_3678 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns1:documentation ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions." ; + ns2:hasExactSynonym "Design of experiments", "Experimental design", "Studies" ; - oboInOwl:hasHumanReadableId "Experimental_design_and_studies" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_0003 . + ns2:hasHumanReadableId "Experimental_design_and_studies" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_0003 . -oboInOwl:hasBroadSynonym a owl:AnnotationProperty . +ns2:hasBroadSynonym a owl:AnnotationProperty . -:data_0871 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic character data from which a phylogenetic tree may be generated." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2523 . -:data_0920 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_0951 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Genotype/phenotype annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A value representing estimated statistical significance of some observed data; typically sequence database hits." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_0967 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning or derived from a concept from a biological ontology." ; + ns2:hasExactSynonym "Ontology class metadata", "Ontology term metadata" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2353 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2353 . -:data_0989 a owl:Class ; +ns1:data_0989 a owl:Class ; rdfs:label "Protein identifier" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0896 ], - :data_0982 . - -:data_1009 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a protein." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0896 ], + ns1:data_0982 . + +ns1:data_1009 a owl:Class ; rdfs:label "Protein name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Name of a protein." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0984, - :data_0989 . - -:data_1047 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Name of a protein." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0984, + ns1:data_0989 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0842 . - -:data_1080 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A string of characters that name or otherwise identify a resource on the Internet." ; + ns2:hasExactSynonym "URIs" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0842 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_3111 ], - :data_0976 . - -:data_1114 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a report of gene expression (e.g. a gene expression profile) from a database." ; + ns2:hasExactSynonym "Gene expression profile identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_3111 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1353 ], - :data_0976 . - -:data_1278 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a sequence motif, for example an entry from a motif database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1353 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:GeneticMap" ; + ns2: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." ; + ns2:hasExactSynonym "Linkage map" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1274 . -:data_1280 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1274 . -:data_1381 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns1:is_deprecation_candidate "true" ; + ns2:hasDefinition "Alignment of exactly two molecular sequences." ; + ns2:hasExactSynonym "Sequence alignment (pair)" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_010068" ; - rdfs:subClassOf :data_0863 . + rdfs:subClassOf ns1:data_0863 . -:data_1459 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a nucleic acid tertiary (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:data_0883 . -:data_1461 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1460 . -:data_1465 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for an RNA tertiary (3D) structure." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], - :data_1459 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], + ns1:data_1459 . -:data_1482 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0886 . - -:data_1598 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of nucleic acid tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (nucleic acid)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0886 . + +ns1:data_1598 a owl:Class ; rdfs:label "Genetic code" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A genetic code for an organism." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A genetic code for an organism." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A genetic code need not include detailed codon usage information." ; - rdfs:subClassOf :data_0914 . + rdfs:subClassOf ns1:data_0914 . -:data_1622 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific disease." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0634 ], + ns1:data_0920 . -:data_1869 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2530 ], - :data_0976 . - -:data_2016 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique identifier of a (group of) organisms." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2530 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2019 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids." ; + ns2:hasExactSynonym "Amino acid data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 exluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped." ; - oboInOwl:hasNarrowSynonym "Map attribute", + ns1:created_in "beta12orEarlier" ; + ns2: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 exluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped." ; + ns2:hasNarrowSynonym "Map attribute", "Map set data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], + ns1:data_0006 . -:data_2071 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1353 . - -:data_2104 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An amino acid sequence motif." ; + ns2:hasExactSynonym "Protein sequence motif" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1353 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_2113 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an object from one of the BioCyc databases." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1:data_2113 a owl:Class ; rdfs:label "WormBase identifier" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an object from the WormBase database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2109 . - -:data_2119 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an object from the WormBase database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2109 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2084 ], - :data_0982 . - -:data_2294 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of a nucleic acid molecule." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2084 ], + ns1:data_0982 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_2316 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of an entry from a database of molecular sequence variation." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1:data_2316 a owl:Class ; rdfs:label "Cell line name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "The name of a cell line." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1046 . - -:data_2339 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a cell line." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1046 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2099, - :data_3025 . - -:data_2367 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a concept in an ontology." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2099, + ns1:data_3025 . + +ns1:data_2367 a owl:Class ; rdfs:label "ASTD ID" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an object from the ASTD database." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1097, - :data_2091, - :data_2109 . - -:data_2728 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an object from the ASTD database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1097, + ns1:data_2091, + ns1:data_2109 . + +ns1:data_2728 a owl:Class ; rdfs:label "EST accession" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Identifier of an EST sequence." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1855 . - -:data_2854 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identifier of an EST sequence." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1855 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1354, - :data_2082 . - -:data_2858 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "PSSM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1354, + ns1:data_2082 . + +ns1:data_2858 a owl:Class ; rdfs:label "Ontology concept" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A concept from a biological ontology." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A concept from a biological ontology." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This includes any fields from the concept definition such as concept name, definition, comments and so on." ; - rdfs:subClassOf :data_2353 . + rdfs:subClassOf ns1:data_2353 . -:data_2891 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1085 . - -:data_2900 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a mathematical model, typically an entry from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1085 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2663, - :data_2901 . - -:data_2914 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of carbohydrates." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2663, + ns1:data_2901 . + +ns1:data_2914 a owl:Class ; rdfs:label "Sequence features metadata" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Metadata on sequence features." ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Metadata on sequence features." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_2976 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:documentation ; + ns2:hasDefinition "One or more protein sequences, possibly with associated annotation." ; + ns2:hasExactSynonym "Amino acid sequence", "Amino acid sequences", "Protein sequences" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation" ; - rdfs:subClassOf :data_2044 . + rdfs:subClassOf ns1:data_2044 . -:data_3671 a owl:Class ; +ns1: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", + ns1:created_in "1.12" ; + ns2:hasDefinition "Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query." ; + ns2:hasExactSynonym "Free text" ; + ns2:hasNarrowSynonym "Plain text", "Textual search query" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2526 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2526 . -:format_1206 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2094, - :format_2096 . - -:format_2014 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2094, + ns1:format_2096 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a sequence-profile alignment." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0858 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0858 ], + ns1:format_2350 . -:format_2031 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0916 ], - :format_2350 . - -:format_2076 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on a particular locus, gene, gene system or groups of genes." ; + ns2:hasExactSynonym "Gene features format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0916 ], + ns1:format_2350 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for secondary structure (predicted or real) of an RNA molecule." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0880 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0880 ], + ns1:format_2350 . -:format_2094 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2571 . - -:format_2195 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for molecular sequence with possible unknown positions but without non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . + +ns1:format_2195 a owl:Class ; rdfs:label "Ontology format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format used for ontologies." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for ontologies." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0582 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0582 ], + ns1:format_2350 . -:format_2548 a owl:Class ; +ns1:format_2548 a owl:Class ; rdfs:label "Sequence feature table format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format for a sequence feature table." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for a sequence feature table." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_1920 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:format_1920 . -:format_2567 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2094, - :format_2566 . - -:format_2924 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2094, + ns1:format_2566 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2551, - :format_2554 . - -:format_3097 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some variant of Phylip format for (aligned) sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2551, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0907 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0907 ], + ns1:format_2350 . -:format_3607 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.11" ; + ns1:documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + ns2:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences)." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2182, + ns1:format_2330, + ns1:format_3606 . -:format_3868 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3866 . - -:is_function_of a owl:ObjectProperty ; + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Textual file format to store trajectory information for a 3D structure ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3866 . + +ns1:is_function_of a owl:ObjectProperty ; rdfs:label "is function of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A is_function_of B' defines for the subject A, that it is a function of the object B." ; + ns2:hasNarrowSynonym "OBO_REL:function_of" ; + ns2:hasRelatedSynonym "OBO_REL:inheres_in" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:operation_0004 ; rdfs:seeAlso "http://wsio.org/is_function_of", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" . -:operation_0252 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Immunogen design" ; + ns2:hasDefinition "Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins." ; + ns2:hasExactSynonym "Antigenicity prediction", "Immunogenicity prediction" ; - oboInOwl:hasNarrowSynonym "B cell peptide immunogenicity prediction", + ns2:hasNarrowSynonym "B cell peptide immunogenicity prediction", "Hopp and Woods plotting", "MHC peptide immunogenicity prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0804 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0804 ], - :operation_0250, - :operation_1777 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1534 ], + ns1:operation_0250, + ns1:operation_1777 . -:operation_0270 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0820 ], + ns1:operation_2945 . -:operation_0279 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Nucleic acid folding", "Nucleic acid folding modelling", "Nucleic acid folding prediction" ; - oboInOwl:hasNarrowSynonym "Nucleic acid folding energy calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Nucleic acid folding energy calculation" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1596 ], - :operation_0475, - :operation_2426, - :operation_2481 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1596 ], + ns1:operation_0475, + ns1:operation_2426, + ns1:operation_2481 . -:operation_0320 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data." ; + ns2:hasNarrowSynonym "NOE assignment", "Structure calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1460 ], - :operation_2406, - :operation_2423 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2406, + ns1:operation_2423 . -:operation_0325 a owl:Class ; +ns1:operation_0325 a owl:Class ; rdfs:label "Phylogenetic tree comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Compare two or more phylogenetic trees." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more phylogenetic trees." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0324, + ns1:operation_2424 . -:operation_0335 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Reformat a file of data (or equivalent entity in memory)." ; + ns2:hasExactSynonym "File format conversion", "File formatting", "File reformatting", "Format conversion", "Reformatting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_0338 a owl:Class ; +ns1: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. + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0857 ], + ns1:operation_2403, + ns1:operation_2421 . -:operation_0418 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Detect or predict signal peptides and signal peptide cleavage sites in protein sequences." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0140 ], + ns1:operation_1777, + ns1:operation_3092 . -:operation_0420 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict or detect RNA and DNA-binding binding sites in protein sequences." ; + ns2: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 edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Zinc finger prediction" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2575 . -:operation_0456 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate and plot a DNA or DNA/RNA melting profile." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1583 ], + ns1:operation_0262, + ns1:operation_0337 . -:operation_0538 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation true ; + ns2:hasDefinition "Construct a phylogenetic tree from a specific type of data." ; + ns2:hasExactSynonym "Phylogenetic tree construction (data centric)", "Phylogenetic tree generation (data centric)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0323 . -:operation_0573 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Draw or visualise a DNA map." ; + ns2:hasExactSynonym "DNA map drawing", "Map rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1274 ], - :operation_0337 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1274 ], + ns1:operation_0337 . -:operation_2415 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Protein folding modelling" ; + ns2:hasNarrowSynonym "Protein folding simulation", "Protein folding site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0130 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1537 ], - :operation_2406, - :operation_2426 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1537 ], + ns1:operation_2406, + ns1:operation_2426 . -:operation_2430 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2520 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Design a biological entity (typically a molecular sequence or structure) with specific properties." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a map of a DNA sequence annotated with positional or non-positional features of some type." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1274 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :operation_2429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1274 ], + ns1:operation_2429 . -:operation_2944 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Physical cartography" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1280 ], - :operation_2520 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1280 ], + ns1:operation_2520 . -:operation_3095 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta13" ; + ns2:hasDefinition "Design (or predict) nucleic acid sequences with specific chemical or physical properties." ; + ns2:hasNarrowSynonym "Gene design" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_2430, - :operation_2478 . + rdfs:subClassOf ns1:operation_2430, + ns1:operation_2478 . -:operation_3096 a owl:Class ; +ns1:operation_3096 a owl:Class ; rdfs:label "Editing" ; - :created_in "beta13" ; - oboInOwl:hasDefinition "Edit a data entity, either randomly or specifically." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2409 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Edit a data entity, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2409 . -:operation_3218 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Raw sequence data quality control." ; + ns2:hasExactSynonym "Sequencing QC", "Sequencing quality assessment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems." ; - rdfs:subClassOf :operation_2428, - :operation_2478 . + rdfs:subClassOf ns1:operation_2428, + ns1:operation_2478 . -:operation_3227 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2: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." ; + ns2:hasExactSynonym "Variant mapping" ; + ns2:hasNarrowSynonym "Allele calling", "Exome variant detection", "Genome variant detection", "Germ line variant calling", "Mutation detection", "Somatic variant calling", "de novo mutation detection" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2478, + ns1:operation_3197 . -:operation_3351 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.4" ; + ns2:hasDefinition "Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0123 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0166 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0166 ], - :operation_2480 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0123 ], + ns1:operation_2480 . -:operation_3432 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:topic_0123 a owl:Class ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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)." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:topics ; - rdfs:subClassOf :topic_0078 . - -:topic_0601 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein." ; + ns2:hasExactSynonym "Protein physicochemistry" ; + ns2:hasHumanReadableId "Protein_properties" ; + ns2:hasNarrowSynonym "Protein hydropathy" ; + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_0078 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein chemical modifications, e.g. post-translational modifications." ; + ns2:hasExactSynonym "PTMs", "Post-translational modifications", "Protein post-translational modification" ; - oboInOwl:hasHumanReadableId "Protein_modifications" ; - oboInOwl:hasNarrowSynonym "Post-translation modifications", + ns2:hasHumanReadableId "Protein_modifications" ; + ns2:hasNarrowSynonym "Post-translation modifications", "Protein chemical modifications", "Protein post-translational modifications" ; - oboInOwl:hasRelatedSynonym "GO:0006464", + ns2:hasRelatedSynonym "GO:0006464", "MOD:00000" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0108 . -:topic_0749 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasHumanReadableId "Transcription_factors_and_regulatory_sites" ; + ns2:hasNarrowSynonym "-10 signals", "-35 signals", "Attenuators", "CAAT signals", @@ -35260,94 +35260,94 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "Transcription factor binding sites", "Transcription factors", "Transcriptional regulatory sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0203, + ns1:topic_3125 . -:topic_0820 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane." ; + ns2:hasHumanReadableId "Membrane_and_lipoproteins" ; + ns2:hasNarrowSynonym "Lipoproteins", "Membrane proteins", "Transmembrane proteins" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_0078 . + rdfs:subClassOf ns1:topic_0078 . -:topic_2259 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The holistic modelling and analysis of complex biological systems and the interactions therein." ; + ns2:hasHumanReadableId "Systems_biology" ; + ns2:hasNarrowSynonym "Biological modelling", "Biological system modelling", "Systems modelling" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3070 . -:topic_2885 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "DNA polymorphism." ; + ns2:hasHumanReadableId "DNA_polymorphism" ; + ns2:hasNarrowSynonym "Microsatellites", "RFLP", "SNP", "Single nucleotide polymorphism", "VNTR", "Variable number of tandem repeat polymorphism", "snps" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0199, + ns1:topic_0654 . -:topic_3299 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.16 Evolutionary biology" ; + ns2:hasDefinition "The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity." ; + ns2:hasExactSynonym "Evolution" ; + ns2:hasHumanReadableId "Evolutionary_biology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3301 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.20 Microbiology" ; + ns2:hasDefinition "The biology of microorganisms." ; + ns2:hasHumanReadableId "Microbiology" ; + ns2:hasNarrowSynonym "Antimicrobial stewardship", "Medical microbiology", "Microbial genetics", "Microbial physiology", @@ -35355,199 +35355,199 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "Microbiological surveillance", "Molecular infection biology", "Molecular microbiology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3489 a owl:Class ; +ns1:topic_3489 a owl:Class ; rdfs:label "Database management" ; - :created_in "1.8" ; - oboInOwl:hasDefinition "The general handling of data stored in digital archives such as databanks, databases proper, web portals and other data resources." ; - oboInOwl:hasExactSynonym "Database administration" ; - oboInOwl:hasHumanReadableId "Database_management" ; - oboInOwl:hasNarrowSynonym "Content management", + ns1:created_in "1.8" ; + ns2:hasDefinition "The general handling of data stored in digital archives such as databanks, databases proper, web portals and other data resources." ; + ns2:hasExactSynonym "Database administration" ; + ns2:hasHumanReadableId "Database_management" ; + ns2:hasNarrowSynonym "Content management", "Data maintenance", "Document management", "Document, record and content management", "File management", "Record management" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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_3071 . + rdfs:subClassOf ns1:topic_3071 . -:topic_3656 a owl:Class ; +ns1: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:hasNarrowSynonym "" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns1:created_in "1.12" ; + ns2: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." ; + ns2:hasExactSynonym "Chromatin immunoprecipitation" ; + ns2:hasHumanReadableId "Immunoprecipitation_experiment" ; + ns2:hasNarrowSynonym "" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:data_0857 a owl:Class ; +ns1: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 "", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "", "Database hits (sequence)", "Sequence database hits", "Sequence database search results", "Sequence search hits" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2080 . -:data_0860 a owl:Class ; +ns1:data_0860 a owl:Class ; rdfs:label "Sequence signature data" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data concering 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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concering concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_0006 . -:data_0968 a owl:Class ; +ns1:data_0968 a owl:Class ; rdfs:label "Keyword" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:BooleanQueryString", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Keyword(s) or phrase(s) used (typically) for text-searching purposes." ; + ns2:hasExactSynonym "Phrases", "Term" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "Boolean operators (AND, OR and NOT) and wildcard characters may be allowed." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_1016 a owl:Class ; +ns1:data_1016 a owl:Class ; rdfs:label "Sequence position" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "PDBML:_atom_site.id", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns2:hasDefinition "A position of one or more points (base or residue) in a sequence, or part of such a specification." ; + ns2:hasRelatedSynonym "SO:0000735" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_1035 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2295 . - -:data_1078 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "[a-zA-Z_0-9\\.-]*" ; + ns2:hasDbXref "Moby_namespace:GeneDB" ; + ns2:hasDefinition "Identifier of a gene from the GeneDB database." ; + ns2:hasExactSynonym "GeneDB identifier" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2295 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2531 ], - :data_0976 . - -:data_1112 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of microarray data." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2531 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_1235 ], - :data_1064 . - -:data_1115 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier of a cluster of molecular sequence(s)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1235 ], + ns1:data_1064 . + +ns1:data_1115 a owl:Class ; rdfs:label "Sequence profile ID" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Identifier of a sequence profile." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a sequence profile." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_1354 ], + ns1:data_0976 . -:data_1190 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0977 . - -:data_1279 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The name of a computer package, application, method or function." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0977 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1280 . -:data_1364 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0950 . - -:data_1394 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "HMM" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0950 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1772 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A simple floating point number defining the penalty for opening or extending a gap in an alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1772 . -:data_1597 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Table of codon usage data calculated from one or more nucleic acid sequences." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_0914 . -:data_2012 a owl:Class ; +ns1:data_2012 a owl:Class ; rdfs:label "Sequence coordinates" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GCP_MapInterval", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:GCP_MapInterval", "Moby:GCP_MapPoint", "Moby:GCP_MapPosition", "Moby:GenePosition", @@ -35556,296 +35556,296 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "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", + ns2:hasDefinition "A position in a map (for example a genetic map), either a single position (point) or a region / interval." ; + ns2:hasExactSynonym "Locus", "Map position", "Sequence co-ordinates" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006, + ns1:data_1016, + ns1:data_1017 . -:data_2050 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2087 . - -:data_2088 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "General data for a molecule." ; + ns2:hasExactSynonym "General molecular property" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2087 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0912 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Structural data for DNA base pairs or runs of bases, such as energy or angle data." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0912 . -:data_2108 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2978 ], - :data_0976 . - -:data_2321 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of a biological reaction from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2978 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1010, - :data_2907 . - -:data_2717 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique, persistent identifier of an enzyme." ; + ns2:hasExactSynonym "Enzyme accession" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1010, + ns1:data_2907 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "General annotation on an oligonucleotide probe, or a set of probes." ; + ns2:hasNarrowSynonym "Oligonucleotide probe sets annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0632 ], - :data_3115 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], + ns1:data_3115 . -:data_2908 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869 . - -:data_2909 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An accession of annotation on a (group of) organisms (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869 . + +ns1:data_2909 a owl:Class ; rdfs:label "Organism name" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:BriefOccurrenceRecord", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1869, - :data_2099 . - -:data_2955 a owl:Class ; + ns2:hasDefinition "The name of an organism (or group of organisms)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1869, + ns1:data_2099 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_2985 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence-derived report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A thermodynamic or kinetic property of a nucleic acid molecule." ; + ns2:hasExactSynonym "Nucleic acid property (thermodynamic or kinetic)", "Nucleic acid thermodynamic property" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0912 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0912 . -:data_3111 a owl:Class ; +ns1: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)", + ns1:created_in "beta13" ; + ns2:hasDefinition "Data generated from processing and analysis of probe set data from a microarray experiment." ; + ns2:hasExactSynonym "Gene annotation (expression)", "Gene expression report", "Microarray probe set data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_3117 . -:data_3128 a owl:Class ; +ns1:data_3128 a owl:Class ; rdfs:label "Nucleic acid structure report" ; - :created_in "beta13" ; - oboInOwl: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." ; - 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)", + ns1:created_in "beta13" ; + ns2: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." ; + ns2:hasDefinition "A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures." ; + ns2:hasExactSynonym "Nucleic acid features (structure)" ; + ns2:hasNarrowSynonym "Quadruplexes (report)", "Stem loop (report)", "d-loop (report)" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2084, - :data_2085 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2084, + ns1:data_2085 . -:data_3707 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006, - :data_3736 . - -:format_1207 a owl:Class ; + ns1:created_in "1.14" ; + ns2:hasDefinition "Machine-readable biodiversity data." ; + ns2:hasExactSynonym "Biodiversity information" ; + ns2:hasNarrowSynonym "OTU table" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006, + ns1:data_3736 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2571 . -:format_2030 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on a chemical compound." ; + ns2:hasExactSynonym "Chemical compound annotation format", "Chemical structure format", "Small molecule report format", "Small molecule structure format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0962 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0962 ], + ns1:format_2350 . -:format_2035 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Text format of a chemical formula." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0846 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0846 ], + ns1:format_2350 . -:format_2182 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling FASTQ short read format." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "This concept may be used for non-standard FASTQ short read-like formats." ; - rdfs:subClassOf :format_2330, - :format_2545 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2545 . -:format_2206 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2548 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for a sequence feature table." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2548 . -:format_2848 a owl:Class ; +ns1:format_2848 a owl:Class ; rdfs:label "Bibliographic reference format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Format of a bibliographic reference." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2849 ], + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a bibliographic reference." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2849 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0970 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0970 ], + ns1:format_2350 . -:format_2922 a owl:Class ; +ns1:format_2922 a owl:Class ; rdfs:label "markx0 variant" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Some variant of Pearson MARKX alignment format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2330, - :format_2554 . - -:format_3033 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some variant of Pearson MARKX alignment format." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2330, + ns1:format_2554 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta13" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a matrix (array) of numerical values." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2082 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2082 ], + ns1:format_2350 . -:format_3507 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_3879 a owl:Class ; + ns1:created_in "1.8" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of documents including word processor, spreadsheet and presentation." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1: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:hasNarrowSynonym "CG topology format", + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation." ; + ns2:hasNarrowSynonym "CG topology format", "MD topology format", "NA topology format", "Protein topology format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Many different file formats exist describing structural molecular topology. Tipically, 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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3872 ], + ns1:format_2350 . -:operation_0226 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary." ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0582 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0089 ], - :operation_0004 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:operation_0004 . -:operation_0248 a owl:Class ; +ns1:operation_0248 a owl:Class ; rdfs:label "Residue interaction calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: SymShellFiveXML", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: SymShellFiveXML", "WHATIF: SymShellOneXML", "WHATIF: SymShellTenXML", "WHATIF: SymShellTwoXML", @@ -35853,172 +35853,172 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "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 edam:edam, - edam:operations ; + ns2:hasDefinition "Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0130 ], - :operation_0250 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0130 ], + ns1:operation_0250 . -:operation_0262 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0912 ], - :operation_3438 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0912 ], + ns1:operation_3438 . -:operation_0306 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Text analysis" ; + ns2:hasDefinition "Process and analyse text (typically scientific literature) to extract information from it." ; + ns2:hasExactSynonym "Literature mining", "Text analytics", "Text data mining" ; - oboInOwl:hasRelatedSynonym "Article analysis", + ns2:hasRelatedSynonym "Article analysis", "Literature analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0972 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0218 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_3671 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_3671 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0218 ], - :operation_2423, - :operation_2945 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0972 ], + ns1:operation_2423, + ns1:operation_2945 . -:operation_0319 a owl:Class ; +ns1:operation_0319 a owl:Class ; rdfs:label "Protein secondary structure assignment" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data." ; - oboInOwl:hasDefinition "Assign secondary structure from protein coordinate or experimental data." ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], + ns1:created_in "beta12orEarlier" ; + ns2:comment "Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data." ; + ns2:hasDefinition "Assign secondary structure from protein coordinate or experimental data." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_1317 ], - :operation_0320 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1317 ], + ns1:operation_0320 . -:operation_0321 a owl:Class ; +ns1:operation_0321 a owl:Class ; rdfs:label "Protein structure validation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: CorrectedPDBasXML", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:edam, - edam:operations ; + ns2:hasDefinition "Evaluate the quality or correctness a protein three-dimensional model." ; + ns2:hasExactSynonym "Protein model validation" ; + ns2:hasNarrowSynonym "Residue validation" ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2275 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2275 ], - :operation_2406, - :operation_2428 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1539 ], + ns1:operation_2406, + ns1:operation_2428 . -:operation_0474 a owl:Class ; +ns1:operation_0474 a owl:Class ; rdfs:label "Protein structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein." ; - oboInOwl:hasDefinition "Predict tertiary structure (backbone and side-chain conformation) of protein sequences." ; - oboInOwl:hasNarrowSynonym "Protein folding pathway prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:comment "This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein." ; + ns2:hasDefinition "Predict tertiary structure (backbone and side-chain conformation) of protein sequences." ; + ns2:hasNarrowSynonym "Protein folding pathway prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1460 ], - :operation_2406, - :operation_2423, - :operation_2479 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2406, + ns1:operation_2423, + ns1:operation_2479 . -:operation_0475 a owl:Class ; +ns1:operation_0475 a owl:Class ; rdfs:label "Nucleic acid structure prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Predict structure of DNA or RNA." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict structure of DNA or RNA." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1459 ], + ns1:operation_2423, + ns1:operation_2481 . -:operation_0539 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation true ; + ns2:hasDefinition "Construct a phylogenetic tree using a specific method." ; + ns2:hasExactSynonym "Phylogenetic tree construction (method centric)", "Phylogenetic tree generation (method centric)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0323 . -:operation_3631 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.12" ; + ns2:hasDefinition "Determination of peptide sequence from mass spectrum." ; + ns2:hasExactSynonym "Peptide-spectrum-matching" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0943 ], - :operation_3214 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0943 ], + ns1:operation_3214 . -:operation_3961 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3228 . - -:topic_0196 a owl:Class ; + ns1:created_in "1.25" ; + ns2:hasDefinition "Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals." ; + ns2:hasExactSynonym "CNV detection" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3228 . + +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The assembly of fragments of a DNA sequence to reconstruct the original sequence." ; + ns2:hasHumanReadableId "Sequence_assembly" ; + ns2:hasNarrowSynonym "Assembly" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_0736 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein tertiary structural domains and folds in a protein or polypeptide chain." ; + ns2:hasHumanReadableId "Protein_folds_and_structural_domains" ; + ns2:hasNarrowSynonym "Intramembrane regions", "Protein domains", "Protein folds", "Protein membrane regions", @@ -36026,48 +36026,48 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "Protein topological domains", "Protein transmembrane regions", "Transmembrane regions" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_2814 . + rdfs:subClassOf ns1:topic_2814 . -:topic_2275 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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)." ; + ns2:hasHumanReadableId "Molecular_modelling" ; + ns2:hasNarrowSynonym "Comparative modelling", "Docking", "Homology modeling", "Homology modelling", "Molecular docking" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0082 . + rdfs:subClassOf ns1:topic_0082 . -:topic_3277 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns2:hasDefinition "Biological samples and specimens." ; + ns2:hasExactSynonym "Specimen collections" ; + ns2:hasHumanReadableId "Sample_collections" ; + ns2:hasNarrowSynonym "biosamples", "samples" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3344 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3344 . -:topic_3314 a owl:Class ; +ns1:topic_3314 a owl:Class ; rdfs:label "Chemistry" ; - :created_in "1.3" ; - oboInOwl:hasBroadSynonym "Chemical science", + ns1:created_in "1.3" ; + ns2:hasBroadSynonym "Chemical science", "Polymer science", "VT 1.7.10 Polymer science" ; - oboInOwl:hasDbXref "VT 1.7 Chemical sciences", + ns2:hasDbXref "VT 1.7 Chemical sciences", "VT 1.7.2 Chemistry", "VT 1.7.3 Colloid chemistry", "VT 1.7.5 Electrochemistry", @@ -36075,586 +36075,586 @@ sequences matching a given sequence motif or pattern, such as a Prosite pattern "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", + ns2:hasDefinition "The composition and properties of matter, reactions, and the use of reactions to create new substances." ; + ns2:hasHumanReadableId "Chemistry" ; + ns2:hasNarrowSynonym "Inorganic chemistry", "Mathematical chemistry", "Nuclear chemistry", "Organic chemistry", "Physical chemistry" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3321 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The structure and function of genes at a molecular level." ; + ns2:hasHumanReadableId "Molecular_genetics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3053, - :topic_3307 . + rdfs:subClassOf ns1:topic_3053, + ns1:topic_3307 . -:topic_3510 a owl:Class ; +ns1: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", + ns1:created_in "1.8" ; + ns2: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." ; + ns2:hasHumanReadableId "Protein_sites_features_and_motifs" ; + ns2:hasNarrowSynonym "Protein sequence features", "Signal peptide cleavage sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0160 . -:data_0847 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A QSAR quantitative descriptor (name-value pair) of chemical structure." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2050 . -:data_0874 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison." ; + ns2:hasExactSynonym "Substitution matrix" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2082 . -:data_0912 a owl:Class ; +ns1:data_0912 a owl:Class ; rdfs:label "Nucleic acid property" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties." ; + ns2:hasDefinition "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule." ; + ns2:hasExactSynonym "Nucleic acid physicochemical property" ; + ns2:hasNarrowSynonym "GC-content", "Nucleic acid property (structural)", "Nucleic acid structural property" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_2087 . + rdfs:subClassOf ns1:data_2087 . -:data_0925 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An assembly of fragments of a (typically genomic) DNA sequence." ; + ns2:hasExactSynonym "Contigs", "SO:0000353" ; - oboInOwl:hasNarrowSynonym "SO:0001248" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "SO:0001248" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 "http://en.wikipedia.org/wiki/Sequence_assembly" ; - rdfs:subClassOf :data_1234 . + rdfs:subClassOf ns1:data_1234 . -:data_0955 a owl:Class ; +ns1:data_0955 a owl:Class ; rdfs:label "Data index" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An index of data of biological relevance." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An index of data of biological relevance." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3489 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3489 ], + ns1:data_0006 . -:data_1154 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:data_1249 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique identifier of an object from one of the KEGG databases (excluding the GENES division)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2534 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2534 . -:data_1353 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :data_0860 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_0860 . -:data_1743 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_1917 . - -:data_2024 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Cartesian coordinate of an atom (in a molecular structure)." ; + ns2:hasExactSynonym "Cartesian coordinate" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1917 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data concerning chemical reaction(s) catalysed by enzyme(s)." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0897, - :data_2978 . + rdfs:subClassOf ns1:data_0897, + ns1:data_2978 . -:data_2093 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "A list of database accessions or identifiers are usually included." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_3424 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "1.5" ; + ns2:hasDefinition "Raw biological or biomedical image generated by some experimental technique." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_000081" ; - rdfs:subClassOf :data_2968 . + rdfs:subClassOf ns1:data_2968 . -:format_2036 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of raw (unplotted) phylogenetic data." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0871 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0871 ], + ns1:format_2350 . -:format_2921 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of sequence variation annotation." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3498 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3498 ], + ns1:format_2350 . -:format_3326 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.3" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a data index of some type." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0955 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0955 ], + ns1:format_2350 . -:format_3464 a owl:Class ; +ns1:format_3464 a owl:Class ; rdfs:label "JSON" ; - :created_in "1.7" ; - :file_extension "json" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "1.7" ; + ns1:file_extension "json" ; + ns1:media_type ; + ns2: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_1915, - :format_3750 . - -:format_3780 a owl:Class ; + ns2:hasDefinition "JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs." ; + ns2:hasExactSynonym "JavaScript Object Notation" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1915, + ns1:format_3750 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.16" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format of an annotated text, e.g. with recognised entities, concepts, and relations." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3779 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3779 ], + ns1:format_2350 . -:operation_0249 a owl:Class ; +ns1:operation_0249 a owl:Class ; rdfs:label "Protein geometry calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:CysteineTorsions", + ns1:created_in "beta12orEarlier" ; + ns2: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", + ns2:hasDefinition "Calculate, visualise or analyse phi/psi angles of a protein structure." ; + ns2:hasNarrowSynonym "Backbone torsion angle calculation", "Cysteine torsion angle calculation", "Tau angle calculation", "Torsion angle calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2991 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2991 ], + ns1:operation_0250 . -:operation_0253 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions." ; + ns2:hasExactSynonym "Sequence feature prediction", "Sequence feature recognition" ; - oboInOwl:hasNarrowSynonym "Motif database search" ; - oboInOwl:hasRelatedSynonym "SO:0000110" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Motif database search" ; + ns2:hasRelatedSynonym "SO:0000110" ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1255 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_2403, - :operation_2423 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1255 ], + ns1:operation_2403, + ns1:operation_2423 . -:operation_0308 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Design or predict oligonucleotide primers for PCR and DNA amplification etc." ; + ns2:hasExactSynonym "PCR primer prediction", "Primer design" ; - oboInOwl:hasNarrowSynonym "PCR primer design (based on gene structure)", + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_0632 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1240 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0632 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], - :operation_2419 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1240 ], + ns1:operation_2419 . -:operation_0346 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence." ; + ns2:hasNarrowSynonym "Sequence database search (by sequence)", "Structure database search (by sequence)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0338, - :operation_0339, - :operation_2451 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0338, + ns1:operation_0339, + ns1:operation_2451 . -:operation_2238 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Perform a statistical data operation of some type, e.g. calibration or validation." ; + ns2:hasExactSynonym "Significance testing", "Statistical analysis", "Statistical test", "Statistical testing" ; - oboInOwl:hasNarrowSynonym "Expectation maximisation", + ns2:hasNarrowSynonym "Expectation maximisation", "Gibbs sampling", "Hypothesis testing", "Omnibus test" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3438 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3438 . -:operation_2421 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Search" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2080 ], + ns1:operation_0224 . -:operation_2429 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2483 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts." ; + ns2:hasExactSynonym "Cartography" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1:operation_2483 a owl:Class ; rdfs:label "Structure comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Compare two or more molecular tertiary structures." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more molecular tertiary structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_2424, - :operation_2480 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:operation_2424, + ns1:operation_2480 . -:topic_0102 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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)." ; + ns2:hasHumanReadableId "Mapping" ; + ns2:hasNarrowSynonym "Genetic linkage", "Linkage", "Linkage mapping", "Synteny" ; - oboInOwl:inSubset edam:topics ; + ns2:inSubset ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_0108 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The translation of mRNA into protein and subsequent protein processing in the cell." ; + ns2:hasHumanReadableId "Protein_expression" ; + ns2:hasNarrowSynonym "Translation" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078 . + rdfs:subClassOf ns1:topic_0078 . -:topic_0632 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence." ; + ns2:hasHumanReadableId "Probes_and_primers" ; + ns2:hasNarrowSynonym "Primer quality", "Primers", "Probes" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_0634 a owl:Class ; +ns1: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 , + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.6 Pathology" ; + ns2:hasDefinition "Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases." ; + ns2:hasExactSynonym , "Disease" ; - oboInOwl:hasHumanReadableId "Pathology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3303 . + ns2:hasHumanReadableId "Pathology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3303 . -:topic_3297 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production." ; + ns2:hasHumanReadableId "Biotechnology" ; + ns2:hasNarrowSynonym "Applied microbiology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3316 a owl:Class ; +ns1:topic_3316 a owl:Class ; rdfs:label "Computer science" ; - :created_in "1.3" ; - oboInOwl:hasDbXref "VT 1.2 Computer sciences", + ns1:created_in "1.3" ; + ns2: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", + ns2:hasDefinition "The theory and practical use of computer systems." ; + ns2:hasHumanReadableId "Computer_science" ; + ns2:hasNarrowSynonym "Cloud computing", "HPC", "High performance computing", "High-performance computing" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . +ns2:hasNarrowSynonym a owl:AnnotationProperty . -:data_0886 a owl:Class ; +ns1:data_0886 a owl:Class ; rdfs:label "Structure alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Alignment (superimposition) of molecular tertiary (3D) structures." ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of molecular tertiary (3D) structures." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_1916 . -:data_0914 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences." ; + ns2:hasExactSynonym "Codon usage report" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_0006 . -:data_0982 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0976 . - -:data_1096 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Name or other identifier of a molecule." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0976 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2976 ], - :data_1093 . - -:data_1234 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of a protein sequence database entry." ; + ns2:hasExactSynonym "Protein sequence accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2976 ], + ns1:data_1093 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0850 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0850 . -:data_1274 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A map of (typically one) DNA sequence annotated with positional or non-positional features." ; + ns2:hasExactSynonym "DNA map" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0102 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0102 ], + ns1:data_0006 . -:data_1501 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2016, - :data_2082 . - -:data_1537 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2016, + ns1:data_2082 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains." ; + ns2:hasExactSynonym "Protein property (structural)", "Protein report (structure)", "Protein structural property", "Protein structure report (domain)", "Protein structure-derived report" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0896, - :data_2085 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0896, + ns1:data_2085 . -:data_1868 a owl:Class ; +ns1:data_1868 a owl:Class ; rdfs:label "Taxon" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:BriefTaxonConcept", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "Moby:BriefTaxonConcept", "Moby:PotentialTaxon" ; - oboInOwl:hasDefinition "The name of a group of organisms belonging to the same taxonomic rank." ; - oboInOwl:hasExactSynonym "Taxonomic rank", + ns2:hasDefinition "The name of a group of organisms belonging to the same taxonomic rank." ; + ns2:hasExactSynonym "Taxonomic rank", "Taxonomy rank" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:comment "For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary." ; - rdfs:subClassOf :data_2909 . + rdfs:subClassOf ns1:data_2909 . -:data_2535 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequencing-based expression profile" ; + ns2:hasNarrowSynonym "Sequence tag profile (with gene assignment)" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0928 . -:data_2600 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network)." ; + ns2:hasExactSynonym "Network", "Pathway" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:data_0006 . -:data_2603 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification." ; + ns2:hasNarrowSynonym "Gene expression data", "Gene product profile", "Gene product quantification data", "Gene transcription profile", @@ -36671,322 +36671,322 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "Transcriptome quantification data", "mRNA profile", "mRNA quantification data" ; - oboInOwl:hasRelatedSynonym "Protein profile", + ns2:hasRelatedSynonym "Protein profile", "Protein quantification data", "Proteome profile", "Proteome quantification data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:data_0006 . -:data_2895 a owl:Class ; +ns1:data_2895 a owl:Class ; rdfs:label "Drug accession" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Accession of a drug." ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0993 . - -:data_2901 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a drug." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0993 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0982 . - -:data_2970 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a specific molecule (catalogued in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0982 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0897 . - -:data_3106 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on protein properties concerning hydropathy." ; + ns2:hasExactSynonym "Protein hydropathy report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0897 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta13" ; + ns2:hasDefinition "Metadata concerning the software, hardware or other aspects of a computer system." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:format_2561 a owl:Class ; +ns1:format_2561 a owl:Class ; rdfs:label "Sequence assembly format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Text format for sequence assembly data." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2055 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for sequence assembly data." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2055 . -:format_3867 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_3866 . - -:operation_0236 a owl:Class ; + ns1:created_in "1.22" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Binary file format to store trajectory information for a 3D structure ." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_3866 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Calculate character or word composition or frequency of a molecular sequence." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0157 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0157 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1261 ], - :operation_2403, - :operation_3438 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1261 ], + ns1:operation_2403, + ns1:operation_3438 . -:operation_0267 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict secondary structure of protein sequences." ; + ns2:hasExactSynonym "Secondary structure prediction (protein)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2416, + ns1:operation_2423, + ns1:operation_2479, + ns1:operation_3092 . -:operation_0323 a owl:Class ; +ns1:operation_0323 a owl:Class ; rdfs:label "Phylogenetic inference" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Construct a phylogenetic tree." ; - oboInOwl:hasExactSynonym "Phlyogenetic tree construction", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Construct a phylogenetic tree." ; + ns2:hasExactSynonym "Phlyogenetic tree construction", "Phylogenetic reconstruction", "Phylogenetic tree generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_topic ; - owl:someValuesFrom :topic_0080 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0872 ], - :operation_0324, - :operation_3429 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0872 ], + ns1:operation_0324, + ns1:operation_3429 . -:operation_0570 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise or render molecular 3D structure, for example a high-quality static picture or animation." ; + ns2:hasExactSynonym "Structure rendering" ; + ns2:hasNarrowSynonym "Protein secondary structure visualisation", "RNA secondary structure visualisation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1710 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0883 ], - :operation_0337, - :operation_2480 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0883 ], + ns1:operation_0337, + ns1:operation_2480 . -:operation_2481 a owl:Class ; +ns1:operation_2481 a owl:Class ; rdfs:label "Nucleic acid structure analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse nucleic acid tertiary structural data." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse nucleic acid tertiary structural data." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0097 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0097 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1459 ], - :operation_2480 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1459 ], + ns1:operation_2480 . -:operation_2575 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures." ; + ns2:hasExactSynonym "Protein binding site detection", "Protein binding site prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_1777, - :operation_3092 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], + ns1:operation_1777, + ns1:operation_3092 . -:operation_2928 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits." ; + ns2:hasExactSynonym "Alignment construction", "Alignment generation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; - rdfs:subClassOf :operation_0004, - :operation_3429 . + rdfs:subClassOf ns1:operation_0004, + ns1:operation_3429 . -:operation_2997 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2424 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more proteins (or some aspect) to identify similarities." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2424 . -:operation_3204 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . - -:operation_3635 a owl:Class ; + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse cytosine methylation states in nucleic acid sequences." ; + ns2:hasExactSynonym "Methylation profile analysis" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . + +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3630 . + ns1:created_in "1.12" ; + ns2:hasDefinition "Quantification based on the use of chemical tags." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3630 . -:operation_3921 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2478 . + ns1:created_in "1.24" ; + ns2:hasDefinition "The processing of reads from high-throughput sequencing machines." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2478 . -:topic_0077 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The processing and analysis of nucleic acid sequence, structural and other data." ; + ns2:hasExactSynonym "Nucleic acid bioinformatics", "Nucleic acid informatics" ; - oboInOwl:hasHumanReadableId "Nucleic_acids" ; - oboInOwl:hasNarrowSynonym "Nucleic acid physicochemistry", + ns2:hasHumanReadableId "Nucleic_acids" ; + ns2:hasNarrowSynonym "Nucleic acid physicochemistry", "Nucleic acid properties" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D017422", "http://purl.bioontology.org/ontology/MSH/D017423" ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:topic_0089 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Ontology_and_terminology" ; + ns2:hasNarrowSynonym "Applied ontology", "Ontologies", "Ontology", "Ontology relations", "Terminology", "Upper ontology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D002965" ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_0130 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Protein_folding_stability_and_design" ; + ns2:hasNarrowSynonym "Protein design", "Protein folding", "Protein residue interactions", "Protein stability", "Rational protein design" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_2814 . + rdfs:subClassOf ns1:topic_2814 . -:topic_0199 a owl:Class ; +ns1:topic_0199 a owl:Class ; rdfs:label "Genetic variation" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - oboInOwl:hasDefinition "Stable, naturally occuring 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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Stable, naturally occuring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." ; + ns2:hasExactSynonym "DNA variation" ; + ns2:hasHumanReadableId "Genetic_variation" ; + ns2:hasNarrowSynonym "Genomic variation", "Mutation", "Polymorphism", "Somatic mutations" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D014644" ; - rdfs:subClassOf :topic_3321 . + rdfs:subClassOf ns1:topic_3321 . -:topic_0605 a owl:Class ; +ns1:topic_0605 a owl:Class ; rdfs:label "Informatics" ; - :created_in "beta12orEarlier" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 1.3 Information sciences", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "The study and practice of information processing and use of computer information systems." ; + ns2:hasExactSynonym "Information management", "Information science", "Knowledge management" ; - oboInOwl:hasHumanReadableId "Informatics" ; - oboInOwl:inSubset edam:topics ; + ns2:hasHumanReadableId "Informatics" ; + ns2:inSubset ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_0654 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "DNA sequences and structure, including processes such as methylation and replication." ; + ns2:hasExactSynonym "DNA analysis" ; + ns2:hasHumanReadableId "DNA" ; + ns2:hasNarrowSynonym "Ancient DNA", "Chromosomes" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "The DNA sequences might be coding or non-coding sequences." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0077 . + rdfs:subClassOf ns1:topic_0077 . -:topic_0659 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA)." ; + ns2:hasHumanReadableId "Functional_regulatory_and_non-coding_RNA" ; + ns2:hasNarrowSynonym "Functional RNA", "Long ncRNA", "Long non-coding RNA", "Non-coding RNA", @@ -37006,298 +37006,298 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "siRNA", "snRNA", "snoRNA" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0099, + ns1:topic_0114 . -:topic_0804 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.1.3 Immunology" ; + ns2:hasDefinition "The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on." ; + ns2:hasHumanReadableId "Immunology" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D007120", "http://purl.bioontology.org/ontology/MSH/D007125" ; - rdfs:subClassOf :topic_3344 . + rdfs:subClassOf ns1:topic_3344 . -:topic_3068 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The scientific literature, language processing, reference information, and documentation." ; + ns2:hasExactSynonym "Language", "Literature" ; - oboInOwl:hasHumanReadableId "Literature_and_language" ; - oboInOwl:hasNarrowSynonym "Bibliography", + ns2:hasHumanReadableId "Literature_and_language" ; + ns2:hasNarrowSynonym "Bibliography", "Citations", "Documentation", "References", "Scientific literature" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3391 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms." ; + ns2:hasHumanReadableId "Omics" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:data_0582 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0089 ], - :data_2353 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0089 ], + ns1:data_2353 . -:data_0990 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0984, - :data_1086 . - -:data_1097 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Unique name of a chemical compound." ; + ns2:hasExactSynonym "Chemical name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0984, + ns1:data_1086 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2977 ], - :data_1093 . - -:data_1235 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession number of a nucleotide sequence database entry." ; + ns2:hasExactSynonym "Nucleotide sequence accession number" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2977 ], + ns1:data_1093 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information." ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0623 ], + ns1:data_0850 . -:data_1354 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Some type of statistical model representing a (typically multiple) sequence alignment." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_010531" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :data_0860 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], + ns1:data_0860 . -:data_1355 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report about a specific or conserved protein sequence pattern." ; + ns2:hasNarrowSynonym "InterPro entry", "Protein domain signature", "Protein family signature", "Protein region signature", "Protein repeat signature", "Protein site signature" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2762 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2762 . -:data_2085 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_2526 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Structure-derived report" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasNarrowSynonym "Article data", "Scientific text data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3068 ], + ns1:data_0006 . -:data_2530 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:format_1475 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific organism." ; + ns2:hasExactSynonym "Organism annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3870 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of an entry (or part of an entry) from the PDB database." ; + ns2:hasExactSynonym "PDB entry format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3870 ], [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0883 ], - :format_2033 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0883 ], + ns1:format_2033 . -:format_2066 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a report on sequence hits and associated data from searching a sequence database." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0857 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0857 ], + ns1:format_2350 . -:format_2552 a owl:Class ; +ns1:format_2552 a owl:Class ; rdfs:label "Sequence record format (XML)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data format for a molecular sequence record." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1919 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for a molecular sequence record." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1919 . -:format_2556 a owl:Class ; +ns1:format_2556 a owl:Class ; rdfs:label "Phylogenetic tree format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Text format for a phylogenetic tree." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for a phylogenetic tree." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2006 . -:operation_0258 a owl:Class ; +ns1:operation_0258 a owl:Class ; rdfs:label "Sequence alignment analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse a molecular sequence alignment." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a molecular sequence alignment." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0863 ], - :operation_2403 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0863 ], + ns1:operation_2403 . -:operation_0438 a owl:Class ; +ns1:operation_0438 a owl:Class ; rdfs:label "Transcriptional regulatory element prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences." ; - oboInOwl:hasExactSynonym "Regulatory element prediction", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences." ; + ns2:hasExactSynonym "Regulatory element prediction", "Transcription regulatory element prediction" ; - oboInOwl:hasNarrowSynonym "Conserved transcription regulatory sequence identification", + ns2:hasNarrowSynonym "Conserved transcription regulatory sequence identification", "Translational regulatory element prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0749 ], + ns1:operation_2454 . -:operation_0571 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise microarray or other expression data." ; + ns2:hasExactSynonym "Expression data rendering" ; + ns2:hasNarrowSynonym "Gene expression data visualisation", "Microarray data rendering" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_3117 ], - :operation_0337, - :operation_2495 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_3117 ], + ns1:operation_0337, + ns1:operation_2495 . -:operation_2428 a owl:Class ; +ns1:operation_2428 a owl:Class ; rdfs:label "Validation" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Validate some data." ; - oboInOwl:hasNarrowSynonym "Quality control" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2574 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Validate some data." ; + ns2:hasNarrowSynonym "Quality control" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information)." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2970 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0123 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0123 ], - :operation_0250 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2970 ], + ns1:operation_0250 . -:operation_2949 a owl:Class ; +ns1:operation_2949 a owl:Class ; rdfs:label "Protein-protein interaction analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Analyse the interactions of proteins with other proteins." ; - oboInOwl:hasExactSynonym "Protein interaction analysis" ; - oboInOwl:hasNarrowSynonym "Protein interaction raw data analysis", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Analyse the interactions of proteins with other proteins." ; + ns2:hasExactSynonym "Protein interaction analysis" ; + ns2:hasNarrowSynonym "Protein interaction raw data analysis", "Protein interaction simulation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0906 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :operation_1777 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0906 ], + ns1:operation_1777 . -:operation_2950 a owl:Class ; +ns1:operation_2950 a owl:Class ; rdfs:label "Residue distance calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF: HETGroupNames", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF: HETGroupNames", "WHATIF:HasMetalContacts", "WHATIF:HasMetalContactsPlus", "WHATIF:HasNegativeIonContacts", @@ -37307,66 +37307,66 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "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", + ns2:hasDefinition "Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations." ; + ns2: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 edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0248 . -:operation_3438 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_3918 a owl:Class ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Mathematical determination of the value of something, typically a properly of a molecule." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1:operation_3918 a owl:Class ; rdfs:label "Genome analysis" ; - :created_in "1.24" ; - oboInOwl:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; + ns1:created_in "1.24" ; + ns2:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0622 ], - :operation_2478 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0622 ], + ns1:operation_2478 . -:operation_3928 a owl:Class ; +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Generate, process or analyse a biological pathway." ; + ns2:hasExactSynonym "Biological pathway analysis" ; + ns2:hasNarrowSynonym "Biological pathway modelling", "Biological pathway prediction", "Functional pathway analysis", "Pathway comparison", "Pathway modelling", "Pathway prediction", "Pathway simulation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2259 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2259 ], + ns1:operation_2945 . -:topic_0154 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Small molecules of biological significance, typically archival, curation, processing and analysis of structural information." ; + ns2:hasHumanReadableId "Small_molecules" ; + ns2:hasNarrowSynonym "Amino acids", "Chemical structures", "Drug structures", "Drug targets", @@ -37378,74 +37378,74 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "Targets", "Toxins", "Toxins and targets" ; - oboInOwl:hasRelatedSynonym "CHEBI:23367" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasRelatedSynonym "CHEBI:23367" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0081 . -:topic_0623 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasExactSynonym "Genes, gene family or system" ; + ns2:hasHumanReadableId "Gene_and protein_families" ; + ns2:hasNarrowSynonym "Gene families", "Gene family", "Gene system", "Protein families", "Protein sequence classification" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_3321 . -:topic_2229 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.11 Cell biology" ; + ns2:hasDefinition "Cells, such as key genes and proteins involved in the cell cycle." ; + ns2:hasHumanReadableId "Cell_biology" ; + ns2:hasNarrowSynonym "Cells", "Cellular processes", "Protein subcellular localization" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3053 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of genes, genetic variation and heredity in living organisms." ; + ns2:hasHumanReadableId "Genetics" ; + ns2:hasNarrowSynonym "Genes", "Heredity" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D005823" ; - rdfs:subClassOf :topic_3070 . + rdfs:subClassOf ns1:topic_3070 . -:topic_3512 a owl:Class ; +ns1: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:hasExactSynonym "mRNA features" ; - oboInOwl:hasHumanReadableId "Gene_transcripts" ; - oboInOwl:hasNarrowSynonym "Coding RNA", + ns1:created_in "1.8" ; + ns2:hasDefinition "Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules." ; + ns2:hasExactSynonym "mRNA features" ; + ns2:hasHumanReadableId "Gene_transcripts" ; + ns2:hasNarrowSynonym "Coding RNA", "EST", "Exons", "Fusion transcripts", @@ -37457,245 +37457,245 @@ oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . "Transit peptide coding sequence", "cDNA", "mRNA" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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:subClassOf :topic_0099, - :topic_0114 . + rdfs:subClassOf ns1:topic_0099, + ns1:topic_0114 . -oboInOwl:isCyclic a owl:AnnotationProperty . +ns2:isCyclic a owl:AnnotationProperty . -:data_0867 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report of molecular sequence alignment-derived data or metadata." ; + ns2:hasExactSynonym "Sequence alignment metadata" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2048 . -:data_0872 a owl:Class ; +ns1:data_0872 a owl:Class ; rdfs:label "Phylogenetic tree" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:Tree", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam ; + ns2: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." ; + ns2:hasExactSynonym "Phylogeny" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:data_2523 . -:data_0950 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A biological model represented in mathematical terms." ; + ns2:hasExactSynonym "Biological model" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3307 ], - :data_0006 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3307 ], + ns1:data_0006 . -:data_1074 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0906 ], - :data_0976 . - -:data_1481 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Molecular interaction ID" ; + ns2:hasDefinition "Identifier of a report of protein interactions from a protein interaction database (typically)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0906 ], + ns1:data_0976 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0886 . - -:data_1583 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures." ; + ns2:hasExactSynonym "Structure alignment (protein)" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0886 . + +ns1:data_1583 a owl:Class ; rdfs:label "Nucleic acid melting profile" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "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.", + ns1:created_in "beta12orEarlier" ; + ns2:comment "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." ; - 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", + ns2:hasDefinition "Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating." ; + ns2:hasExactSynonym "Nucleic acid stability profile" ; + ns2:hasNarrowSynonym "Melting map", "Nucleic acid melting curve" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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." ; - rdfs:subClassOf :data_2985 . + rdfs:subClassOf ns1:data_2985 . -:data_1772 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A numerical value, that is some type of scored value arising for example from a prediction method." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . -:data_1916 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2084 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation true ; + ns2:hasDefinition "An alignment of molecular sequences, structures or profiles derived from them." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about one or more specific nucleic acid molecules." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_2087 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2969 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule." ; + ns2:hasExactSynonym "Physicochemical property" ; + ns2:hasRelatedSynonym "SO:0000400" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2955, - :data_2968 . - -:data_2977 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Image of a molecular sequence, possibly with sequence features or properties shown." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2955, + ns1:data_2968 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "One or more nucleic acid sequences, possibly with associated annotation." ; + ns2:hasExactSynonym "Nucleic acid sequences", "Nucleotide sequence", "Nucleotide sequences" ; - oboInOwl:hasNarrowSynonym "DNA sequence" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "DNA sequence" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation" ; - rdfs:subClassOf :data_2044 . + rdfs:subClassOf ns1:data_2044 . -:format_1921 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for molecular sequence alignment information." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0863 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0863 ], + ns1:format_2350 . -:format_2032 a owl:Class ; +ns1:format_2032 a owl:Class ; rdfs:label "Workflow format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasBroadSynonym "Programming language", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Programming language", "Script format" ; - oboInOwl:hasDefinition "Format of a workflow." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . + ns2:hasDefinition "Format of a workflow." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . -:format_2376 a owl:Class ; +ns1:format_2376 a owl:Class ; rdfs:label "RDF format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref ; - oboInOwl:hasDefinition "A serialisation format conforming to the Resource Description Framework (RDF) model." ; - oboInOwl:hasExactSynonym "Resource Description Framework format" ; - oboInOwl:hasRelatedSynonym "RDF", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref ; + ns2:hasDefinition "A serialisation format conforming to the Resource Description Framework (RDF) model." ; + ns2:hasExactSynonym "Resource Description Framework format" ; + ns2:hasRelatedSynonym "RDF", "Resource Description Framework" ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1915, - :format_2195, - :format_3748 . + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1915, + ns1:format_2195, + ns1:format_3748 . -:format_3167 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.0" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for annotation on a laboratory experiment." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2531 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2531 ], + ns1:format_2350 . -:operation_0231 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403, - :operation_3096 . - -:operation_3197 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Edit or change a molecular sequence, either randomly or specifically." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403, + ns1:operation_3096 . + +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model." ; + ns2:hasExactSynonym "Genetic variation annotation", "Sequence variation analysis", "Variant analysis" ; - oboInOwl:hasNarrowSynonym "Transcript variant analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Transcript variant analysis" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2945 . -:operation_3214 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns2:hasDefinition "Analyse one or more spectra from mass spectrometry (or other) experiments." ; + ns2:hasExactSynonym "Mass spectrum analysis", "Spectrum analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:operation_2945 . -:topic_0157 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Sequence_composition_complexity_and_repeats" ; + ns2:hasNarrowSynonym "Low complexity sequences", "Nucleic acid repeats", "Protein repeats", "Protein sequence repeats", @@ -37703,310 +37703,310 @@ oboInOwl:isCyclic a owl:AnnotationProperty . "Sequence complexity", "Sequence composition", "Sequence repeats" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0080 . -:topic_1775 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of gene and protein function including the prediction of functional properties of a protein." ; + ns2:hasExactSynonym "Functional analysis" ; + ns2:hasHumanReadableId "Function_analysis" ; + ns2:hasNarrowSynonym "Protein function analysis", "Protein function prediction" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3307 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3307 . -:topic_3376 a owl:Class ; +ns1:topic_3376 a owl:Class ; rdfs:label "Medicines research and development" ; - :created_in "1.4" ; - oboInOwl:hasBroadSynonym "Health care research", + ns1:created_in "1.4" ; + ns2: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 edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_3344 . + ns2:hasDefinition "The discovery, development and approval of medicines." ; + ns2:hasExactSynonym "Drug discovery and development" ; + ns2:hasHumanReadableId "Medicines_research_and_development" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_3344 . -oboInOwl:SubsetProperty a owl:AnnotationProperty . +ns2:SubsetProperty a owl:AnnotationProperty . -:format_2033 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf :format_2350 . - -:format_2200 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a molecular tertiary structure." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_2350 . + +ns1:format_2200 a owl:Class ; rdfs:label "FASTA-like (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "A text format resembling FASTA format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A text format resembling FASTA format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_2330, + ns1:format_2546 . -:operation_0286 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table)." ; + ns2:hasExactSynonym "Codon usage data analysis", "Codon usage table analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0914 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1597 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1597 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0914 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_1597 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1597 ], + ns1:operation_2478 . -:operation_0310 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence." ; + ns2:hasNarrowSynonym "Metagenomic assembly", "Sequence assembly editing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0196 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0196 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0925 ], + ns1:operation_2478 . -:operation_0324 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions." ; + ns2:hasExactSynonym "Phylogenetic tree analysis" ; + ns2:hasNarrowSynonym "Phylogenetic modelling" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0084 ], + ns1:operation_2945 . -:operation_0564 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2969 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown." ; + ns2:hasExactSynonym "Sequence rendering" ; + ns2:hasNarrowSynonym "Sequence alignment visualisation" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2044 ], - :operation_0337, - :operation_2403 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2969 ], + ns1:operation_0337, + ns1:operation_2403 . -:operation_1777 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Predict the biological or biochemical role of a protein, or other aspects of a protein function." ; + ns2:hasExactSynonym "Protein function analysis", "Protein functional analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_1775 ], + ns1:operation_2423, + ns1:operation_2945 . -:operation_2479 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a protein sequence (using methods that are only applicable to protein sequences)." ; + ns2:hasExactSynonym "Sequence analysis (protein)" ; + ns2:hasNarrowSynonym "Protein sequence alignment analysis", "Sequence alignment analysis (protein)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2976 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0078 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0078 ], - :operation_2403 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2976 ], + ns1:operation_2403 . -:topic_0082 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Structure_prediction" ; + ns2: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 edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0081 . -:topic_3344 a owl:Class ; +ns1: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", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 3.3 Health sciences" ; + ns2:hasDefinition "Topic concerning biological science that is (typically) performed in the context of medicine." ; + ns2:hasExactSynonym "Biomedical sciences", "Health science" ; - oboInOwl:hasHumanReadableId "Biomedical_science" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Biomedical_science" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . +ns2:hasRelatedSynonym a owl:AnnotationProperty . -:data_0916 a owl:Class ; +ns1:data_0916 a owl:Class ; rdfs:label "Gene report" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby:GeneInfo", + ns1:created_in "beta12orEarlier" ; + ns2: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)", + ns2: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." ; + ns2: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 edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2084 . -:data_0962 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A human-readable collection of information about a specific chemical compound." ; + ns2:hasExactSynonym "Chemical compound annotation", "Chemical structure report", "Small molecule annotation" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0154 ], - :data_2085 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0154 ], + ns1:data_2085 . -:data_1086 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Identifier of an entry from a database of chemicals." ; + ns2:hasExactSynonym "Chemical compound identifier", "Compound ID", "Small molecule identifier" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0962 ], - :data_0982 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0962 ], + ns1:data_0982 . -:data_2523 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:data_2884 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2894 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph." ; + ns2:hasExactSynonym "Graph data" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of an entry from a database of chemicals." ; + ns2:hasExactSynonym "Chemical compound accession", "Small molecule accession" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1086, - :data_2901 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1086, + ns1:data_2901 . -:data_2984 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :data_2048 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], + ns1:data_2048 . -:operation_0230 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Generate a molecular sequence by some means." ; + ns2:hasNarrowSynonym "Sequence generation (nucleic acid)", "Sequence generation (protein)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_2403, - :operation_3429 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_2403, + ns1:operation_3429 . -:operation_0387 a owl:Class ; +ns1:operation_0387 a owl:Class ; rdfs:label "Molecular surface calculation" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "WHATIF:AtomAccessibilityMolecular", + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "WHATIF:AtomAccessibilityMolecular", "WHATIF:AtomAccessibilityMolecularPlus", "WHATIF:ResidueAccessibilityMolecular", "WHATIF:ResidueAccessibilitySolvent", @@ -38014,59 +38014,59 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "WHATIF:ResidueAccessibilityVacuumMolecular", "WHATIF:TotAccessibilityMolecular", "WHATIF:TotAccessibilitySolvent" ; - oboInOwl:hasDefinition "Calculate the molecular surface area in proteins and other macromolecules." ; - oboInOwl:hasNarrowSynonym "Protein atom surface calculation", + ns2:hasDefinition "Calculate the molecular surface area in proteins and other macromolecules." ; + ns2:hasNarrowSynonym "Protein atom surface calculation", "Protein residue surface calculation", "Protein surface and interior calculation", "Protein surface calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_3351 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_3351 . -:operation_2426 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2275 ], - :operation_0004 . - -:operation_3927 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; + ns2:hasNarrowSynonym "Mathematical modelling" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2275 ], + ns1:operation_0004 . + +ns1: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", + ns1:created_in "1.24" ; + ns2:hasDefinition "Generate, process or analyse a biological network." ; + ns2:hasExactSynonym "Biological network analysis" ; + ns2:hasNarrowSynonym "Biological network modelling", "Biological network prediction", "Network comparison", "Network modelling", "Network prediction", "Network simulation", "Network topology simulation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2259 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0602 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0602 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2259 ], + ns1:operation_2945 . -:topic_3168 a owl:Class ; +ns1: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", + ns1:created_in "1.1" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes." ; + ns2:hasExactSynonym "DNA-Seq" ; + ns2:hasHumanReadableId "Sequencing" ; + ns2:hasNarrowSynonym "Chromosome walking", "Clone verification", "DNase-Seq", "High throughput sequencing", @@ -38079,18 +38079,18 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Primer walking", "Sanger sequencing", "Targeted next-generation sequencing panels" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D059014" ; - rdfs:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:data_0858 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Report on the location of matches (\"hits\") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures." ; + ns2:hasNarrowSynonym "Profile-profile alignment", "Protein secondary database search results", "Search results (protein secondary database)", "Sequence motif hits", @@ -38099,369 +38099,369 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Sequence profile hits", "Sequence profile matches", "Sequence-profile alignment" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0860, + ns1:data_1916 . -:data_0966 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A term (name) from an ontology." ; + ns2:hasExactSynonym "Ontology class name", "Ontology terms" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_0967 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0967 . -:data_1261 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report (typically a table) on character or word composition / frequency of a molecular sequence(s)." ; + ns2:hasExactSynonym "Sequence composition", "Sequence property (composition)" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_1254 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_1254 . -:format_1919 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a molecular sequence record." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0849 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0849 ], + ns1:format_2350 . -:format_2057 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format for sequence trace data (i.e. including base call information)." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_0924 ], - :format_1919 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_0924 ], + ns1:format_1919 . -:format_2920 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1381 ], - :format_1921 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1381 ], + ns1:format_1921 . -:operation_2454 a owl:Class ; +ns1:operation_2454 a owl:Class ; rdfs:label "Gene prediction" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions." ; + ns2:hasDefinition "Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc." ; + ns2:hasExactSynonym "Gene calling", "Gene finding" ; - oboInOwl:hasNarrowSynonym "Whole gene prediction" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Whole gene prediction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0114 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0114 ], - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0916 ], + ns1:operation_2478 . -:topic_0078 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Archival, processing and analysis of protein data, typically molecular sequence and structural data." ; + ns2:hasExactSynonym "Protein bioinformatics", "Protein informatics" ; - oboInOwl:hasHumanReadableId "Proteins" ; - oboInOwl:hasNarrowSynonym "Protein databases" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:hasHumanReadableId "Proteins" ; + ns2:hasNarrowSynonym "Protein databases" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D020539" ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:topic_0084 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The study of evolutionary relationships amongst organisms." ; + ns2:hasHumanReadableId "Phylogeny" ; + ns2:hasNarrowSynonym "Phylogenetic clocks", "Phylogenetic dating", "Phylogenetic simulation", "Phylogenetic stratigraphy", "Phylogeny reconstruction" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3299, + ns1:topic_3307 . -:topic_2814 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId "http://edamontology.org/topic_3040" ; + ns2:hasDefinition "Protein secondary or tertiary structural data and/or associated annotation." ; + ns2:hasExactSynonym "Protein structure" ; + ns2:hasHumanReadableId "Protein_structure_analysis" ; + ns2:hasNarrowSynonym "Protein tertiary structure" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078, - :topic_0081 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0081 . -:topic_3071 a owl:Class ; +ns1:topic_3071 a owl:Class ; rdfs:label "Biological databases" ; - :created_in "beta13" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Databases" ; - oboInOwl:hasDbXref "VT 1.3.1 Data management" ; - oboInOwl:hasDefinition "The development and use of architectures, policies, practices and procedures for management of data." ; - oboInOwl:hasExactSynonym "Data management", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Databases" ; + ns2:hasDbXref "VT 1.3.1 Data management" ; + ns2:hasDefinition "The development and use of architectures, policies, practices and procedures for management of data." ; + ns2:hasExactSynonym "Data management", "Databases and information systems", "Information systems" ; - oboInOwl:hasHumanReadableId "Biological_databases" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:hasHumanReadableId "Biological_databases" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D030541" ; - rdfs:subClassOf :topic_0605 . + rdfs:subClassOf ns1:topic_0605 . -:topic_3307 a owl:Class ; +ns1:topic_3307 a owl:Class ; rdfs:label "Computational biology" ; - :created_in "1.3" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 1.5.12 Computational biology", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems." ; + ns2:hasHumanReadableId "Computational_biology" ; + ns2:hasNarrowSynonym "Biomathematics", "Mathematical biology", "Theoretical biology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:comment "This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology)." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:topic_3361 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns2:hasDefinition "The procedures used to conduct an experiment." ; + ns2:hasExactSynonym "Experimental techniques", "Lab method", "Lab techniques", "Laboratory method" ; - oboInOwl:hasHumanReadableId "Laboratory_techniques" ; - oboInOwl:hasNarrowSynonym "Experiments", + ns2:hasHumanReadableId "Laboratory_techniques" ; + ns2:hasNarrowSynonym "Experiments", "Laboratory experiments" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; - rdfs:subClassOf :topic_0003 . + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; + rdfs:subClassOf ns1:topic_0003 . -:topic_3382 a owl:Class ; +ns1: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", + ns1:created_in "1.4" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The visual representation of an object." ; + ns2:hasHumanReadableId "Imaging" ; + ns2:hasNarrowSynonym "Diffraction experiment", "Microscopy", "Microscopy imaging", "Optical super resolution microscopy", "Photonic force microscopy", "Photonic microscopy" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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:subClassOf :topic_3361 . + rdfs:subClassOf ns1:topic_3361 . -:data_0896 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . - -:data_0943 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Gene product annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Spectra from mass spectrometry." ; + ns2:hasExactSynonym "Mass spectrometry spectra" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0121 ], - :data_2536 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0121 ], + ns1:data_2536 . -:data_0957 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_2337 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc." ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2337 . -:topic_0097 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation." ; + ns2:hasExactSynonym "Nucleic acid structure" ; + ns2:hasHumanReadableId "Nucleic_acid_structure_analysis" ; + ns2:hasNarrowSynonym "DNA melting", "DNA structure", "Nucleic acid denaturation", "Nucleic acid thermodynamics", "RNA alignment", "RNA structure", "RNA structure alignment" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:topic_0077, + ns1:topic_0081 . -:topic_0114 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc." ; + ns2:hasExactSynonym "Gene features" ; + ns2:hasHumanReadableId "Gene_structure" ; + ns2:hasNarrowSynonym "Fusion genes" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "This includes the study of promoters, coding regions etc.", "This incudes 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." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_3321 . + rdfs:subClassOf ns1:topic_3321 . -:data_0849 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDbXref "SO:2000061" ; + ns2:hasDefinition "A molecular sequence and associated metadata." ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; - rdfs:subClassOf :data_2044 . + rdfs:subClassOf ns1:data_2044 . -:data_0850 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasNarrowSynonym "Alignment reference" ; + ns2:hasRelatedSynonym "SO:0001260" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:data_1087 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_3025 . - -:data_1460 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_3025 . + +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules." ; + ns2:hasExactSynonym "Protein structures" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], - :data_0883 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], + ns1:data_0883 . -:data_2044 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "One or more molecular sequences, possibly with associated annotation." ; + ns2:hasExactSynonym "Sequences" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], + ns1:data_0006 . -:data_2910 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1075 . - -:data_3108 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a protein family (that is deposited in a database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1075 . + +ns1: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", + ns1:created_in "beta13" ; + ns2:hasDefinition "Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware." ; + ns2:hasExactSynonym "Experimental measurement data", "Experimentally measured data", "Measured data", "Measurement", "Measurement data" ; - oboInOwl:hasNarrowSynonym "Measurement metadata", + ns2:hasNarrowSynonym "Measurement metadata", "Raw experimental data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:format_1915 a owl:Class ; +ns1:format_1915 a owl:Class ; rdfs:label "Format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasBroadSynonym "Data model" ; - 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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Data model" ; + ns2:hasDefinition "A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere." ; + ns2:hasExactSynonym "Data format", "Exchange format" ; - oboInOwl:hasNarrowSynonym "File format" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasNarrowSynonym "File format" ; + ns2:inSubset ns4:edam, + ns4: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 "\"http://purl.obolibrary.org/obo/IAO_0000098\"", "\"http://purl.org/dc/elements/1.1/format\"", @@ -38477,111 +38477,111 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#quality", "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant", "http://www.onto-med.de/ontologies/gfo.owl#Symbol_structure" ; - owl:disjointWith :operation_0004, - :topic_0003, + owl:disjointWith ns1:operation_0004, + ns1:topic_0003, owl:DeprecatedClass . -:format_1920 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for molecular sequence feature information." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_1255 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_1255 ], + ns1:format_2350 . -:operation_0295 a owl:Class ; +ns1:operation_0295 a owl:Class ; rdfs:label "Structure alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl: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." ; - oboInOwl:hasDefinition "Align (superimpose) molecular tertiary structures." ; - oboInOwl:hasExactSynonym "Structural alignment" ; - oboInOwl:hasNarrowSynonym "3D profile alignment", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasDefinition "Align (superimpose) molecular tertiary structures." ; + ns2:hasExactSynonym "Structural alignment" ; + ns2:hasNarrowSynonym "3D profile alignment", "3D profile-to-3D profile alignment", "Structural profile alignment" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_0886 ], - :operation_2480, - :operation_2483, - :operation_2928 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0886 ], + ns1:operation_2480, + ns1:operation_2483, + ns1:operation_2928 . -:operation_0415 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Sequence feature detection (nucleic acid)" ; + ns2:hasNarrowSynonym "Nucleic acid feature prediction", "Nucleic acid feature recognition", "Nucleic acid site detection", "Nucleic acid site prediction", "Nucleic acid site recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], - :operation_2423, - :operation_2478 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1276 ], + ns1:operation_2423, + ns1:operation_2478 . -:operation_2406 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_2814 ], + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse protein structural data." ; + ns2:hasExactSynonym "Structure analysis (protein)" ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_2814 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_1460 ], - :operation_2480 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_1460 ], + ns1:operation_2480 . -:operation_2424 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . - -:operation_2451 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Compare two or more things to identify similarities." ; + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . + +ns1:operation_2451 a owl:Class ; rdfs:label "Sequence comparison" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Compare two or more molecular sequences." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Compare two or more molecular sequences." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2044 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2044 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2955 ], - :operation_2403, - :operation_2424 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2955 ], + ns1:operation_2403, + ns1:operation_2424 . -:topic_0602 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId "http://edamontology.org/topic_3076" ; + ns2:hasDefinition "Molecular interactions, biological pathways, networks and other models." ; + ns2:hasHumanReadableId "Molecular_interactions_pathways_and_networks" ; + ns2:hasNarrowSynonym "Biological models", "Biological networks", "Biological pathways", "Cellular process pathways", @@ -38597,335 +38597,335 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Pathways", "Signal transduction pathways", "Signaling pathways" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:data_2337 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Provenance metadata" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_2048 . + rdfs:subClassOf ns1:data_2048 . -:data_2968 a owl:Class ; +ns1: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 edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen." ; + ns2:hasExactSynonym "Image data" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_000079", "http://semanticscience.org/resource/SIO_000081" ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:format_2058 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2603 ], - :format_2350 . - -:format_2919 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; + ns2:hasExactSynonym "Gene expression data format" ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2603 ], + ns1:format_2350 . + +ns1:format_2919 a owl:Class ; rdfs:label "Sequence annotation track format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Format of a sequence annotation track." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Format of a sequence annotation track." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_3002 ], - :format_1920 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_3002 ], + ns1:format_1920 . -:operation_2409 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasExactSynonym "File handling", "File processing", "Report handling", "Utility operation" ; - oboInOwl:hasNarrowSynonym "Processing" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:hasNarrowSynonym "Processing" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_3489 ], - :operation_0004 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_3489 ], + ns1:operation_0004 . -:topic_0622 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc." ; + ns2:hasHumanReadableId "Genomics" ; + ns2:hasNarrowSynonym "Exomes", "Genome annotation", "Genomes", "Personal genomics", "Synthetic genomics", "Viral genomics", "Whole genomes" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D023281" ; - rdfs:subClassOf :topic_3391 . + rdfs:subClassOf ns1:topic_3391 . -:topic_1317 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDbXref "VT 1.5.24 Structural biology" ; + ns2:hasDefinition "The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids." ; + ns2:hasHumanReadableId "Structural_biology" ; + ns2:hasNarrowSynonym "Structural assignment", "Structural determination", "Structure determination" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3070 . -:data_1255 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence." ; + ns2:hasExactSynonym "Feature record", "Features", "General sequence features", "Sequence features report" ; - oboInOwl:hasRelatedSynonym "SO:0000110" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasRelatedSynonym "SO:0000110" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:data_2365 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1082 . - -:format_2013 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A persistent, unique identifier of a biological pathway or network (typically a database entry)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1082 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Data format for a biological pathway or network." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2600 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2600 ], + ns1:format_2350 . -:format_2571 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format of a raw molecular sequence (i.e. the alphabet used)." ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2044 ], + ns1:format_2350 . -:operation_3429 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "1.6" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Construct some data entity." ; + ns2:hasExactSynonym "Construction" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "For non-analytical operations, see the 'Processing' branch." ; - rdfs:subClassOf :operation_0004 . + rdfs:subClassOf ns1:operation_0004 . -:data_0863 a owl:Class ; +ns1:data_0863 a owl:Class ; rdfs:label "Sequence alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Alignment of multiple molecular sequences." ; - oboInOwl:hasExactSynonym "Multiple sequence aligment", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Alignment of multiple molecular sequences." ; + ns2:hasExactSynonym "Multiple sequence aligment", "msa" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "http://en.wikipedia.org/wiki/Sequence_alignment", "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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], + ns1:data_1916 . -:data_0883 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure." ; + ns2:hasExactSynonym "Coordinate model", "Structure data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:data_0006 . -:data_1893 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasExactSynonym "Locus identifier", "Locus name" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_2012 ], - :data_0976 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_2012 ], + ns1:data_0976 . -:data_2082 a owl:Class ; +ns1:data_2082 a owl:Class ; rdfs:label "Matrix" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "An array of numerical values." ; - oboInOwl:hasExactSynonym "Array" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An array of numerical values." ; + ns2:hasExactSynonym "Array" ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; - rdfs:subClassOf :data_0006 . + rdfs:subClassOf ns1:data_0006 . -:operation_0250 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Protein property rendering" ; + ns2:hasNarrowSynonym "Protein property calculation (from sequence)", "Protein property calculation (from structure)", "Protein structural property calculation", "Structural property calculation" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_2423, + ns1:operation_3438 . -:operation_0292 a owl:Class ; +ns1:operation_0292 a owl:Class ; rdfs:label "Sequence alignment" ; - :created_in "beta12orEarlier" ; - oboInOwl: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'." ; - oboInOwl:hasDefinition "Align (identify equivalent sites within) molecular sequences." ; - oboInOwl:hasExactSynonym "Sequence alignment construction", + ns1:created_in "beta12orEarlier" ; + ns2: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'." ; + ns2:hasDefinition "Align (identify equivalent sites within) molecular sequences." ; + ns2:hasExactSynonym "Sequence alignment construction", "Sequence alignment generation" ; - oboInOwl:hasNarrowSynonym "Consensus-based sequence alignment", + ns2:hasNarrowSynonym "Consensus-based sequence alignment", "Constrained sequence alignment", "Multiple sequence alignment (constrained)", "Sequence alignment (constrained)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "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 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_0863 ], + ns1:operation_2403, + ns1:operation_2451, + ns1:operation_2928 . -:operation_3092 a owl:Class ; +ns1: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", + ns1:created_in "beta13" ; + ns2:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein sequences or structures." ; + ns2:hasExactSynonym "Protein feature prediction", "Protein feature recognition" ; - oboInOwl:hasNarrowSynonym "Protein secondary database search", + ns2:hasNarrowSynonym "Protein secondary database search", "Protein site detection", "Protein site prediction", "Protein site recognition", "Sequence feature detection (protein)", "Sequence profile database search" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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_output ; - owl:someValuesFrom :data_1277 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0160 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0160 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0078 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0078 ], - :operation_2423, - :operation_2479 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_1277 ], + ns1:operation_2423, + ns1:operation_2479 . -:topic_0621 a owl:Class ; +ns1: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 edam:edam, - edam:events, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "A specific organism, or group of organisms, used to study a particular aspect of biology." ; + ns2:hasExactSynonym "Organisms" ; + ns2:hasHumanReadableId "Model_organisms" ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3070 . -:data_2109 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier that is re-used for data objects of fundamentally different types (typically served from a single database)." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_0842 . -:operation_2945 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Apply analytical methods to existing data of a specific type." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:operation_0004 . -:topic_0121 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein and peptide identification, especially in the study of whole proteomes of organisms." ; + ns2:hasHumanReadableId "Proteomics" ; + ns2:hasNarrowSynonym "Bottom-up proteomics", "Discovery proteomics", "MS-based targeted proteomics", "MS-based untargeted proteomics", @@ -38935,101 +38935,101 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Quantitative proteomics", "Targeted proteomics", "Top-down proteomics" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3391 . -:topic_0203 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasAlternativeId "http://edamontology.org/topic_0197" ; + ns2: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." ; + ns2:hasExactSynonym "Expression" ; + ns2:hasHumanReadableId "Gene_expression" ; + ns2:hasNarrowSynonym "Codon usage", "DNA chips", "DNA microarrays", "Gene expression profiling", "Gene transcription", "Gene translation", "Transcription" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3321 . -:data_1026 a owl:Class ; +ns1:data_1026 a owl:Class ; rdfs:label "Gene symbol" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDbXref "Moby_namespace:Global_GeneCommonName", + ns1:created_in "beta12orEarlier" ; + ns2: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2299 . + ns2: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." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2299 . -:data_2531 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Experiment annotation", "Experiment metadata", "Experiment report" ; - oboInOwl:inSubset edam:data, - edam:edam ; - rdfs:subClassOf :data_2048 . + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_2048 . -:data_2534 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf :data_0006 . - -:data_2907 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An attribute of a molecular sequence, possibly in reference to some other sequence." ; + ns2:hasNarrowSynonym "Sequence parameter" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf ns1:data_0006 . + +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_0989, - :data_2901 . - -:operation_2480 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Accession of a protein deposited in a database." ; + ns2:hasExactSynonym "Protein accessions" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_0989, + ns1:data_2901 . + +ns1:operation_2480 a owl:Class ; rdfs:label "Structure analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Analyse known molecular tertiary structures." ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse known molecular tertiary structures." ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0081 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0081 ], + ns1:operation_2945 . -:topic_0003 a owl:Class ; +ns1: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 edam:edam, - edam:topics ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasRelatedSynonym "sumo:FieldOfStudy" ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:seeAlso "http://bioontology.org/ontologies/ResearchArea.owl#Area_of_Research", "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Method", "http://purl.org/biotop/biotop.owl#Quality", @@ -39040,13 +39040,13 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" ; owl:disjointWith owl:DeprecatedClass . -:topic_0128 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions." ; + ns2:hasHumanReadableId "Protein_interactions" ; + ns2:hasNarrowSynonym "Protein interaction map", "Protein interaction networks", "Protein interactome", "Protein-DNA interaction", @@ -39056,200 +39056,200 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Protein-ligand interactions", "Protein-nucleic acid interactions", "Protein-protein interactions" ; - oboInOwl:inSubset edam:edam, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:topics ; rdfs:comment "This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques." ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0078, - :topic_0602 . + rdfs:subClassOf ns1:topic_0078, + ns1:topic_0602 . -:data_0906 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Protein interaction record", "Protein interaction report", "Protein report (interaction)", "Protein-protein interaction data" ; - oboInOwl:hasNarrowSynonym "Atom interaction data", + ns2:hasNarrowSynonym "Atom interaction data", "Protein non-covalent interactions report", "Residue interaction data" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0128 ], - :data_0897 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0128 ], + ns1:data_0897 . -:topic_0081 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules." ; + ns2:hasExactSynonym "Biomolecular structure", "Structural bioinformatics" ; - oboInOwl:hasHumanReadableId "Structure_analysis" ; - oboInOwl:hasNarrowSynonym "Computational structural biology", + ns2:hasHumanReadableId "Structure_analysis" ; + ns2:hasNarrowSynonym "Computational structural biology", "Molecular structure", "Structure data resources", "Structure databases", "Structures" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4: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 . + rdfs:subClassOf ns1:topic_3307 . -:data_1276 a owl:Class ; +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable." ; + ns2:hasExactSynonym "Feature table (nucleic acid)", "Nucleic acid feature table" ; - oboInOwl:hasNarrowSynonym "Genome features", + ns2:hasNarrowSynonym "Genome features", "Genomic features" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_1255 . -:operation_0337 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures." ; + ns2:hasExactSynonym "Data visualisation", "Rendering" ; - oboInOwl:hasNarrowSynonym "Molecular visualisation", + ns2:hasNarrowSynonym "Molecular visualisation", "Plotting" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:comment "This includes methods to render and visualise molecules." ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0092 ], + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0092 ], [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2968 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2968 ], [ a owl:Restriction ; - owl:onProperty :has_output ; - owl:someValuesFrom :data_2968 ], - :operation_0004 . + owl:onProperty ns1:has_output ; + owl:someValuesFrom ns1:data_2968 ], + ns1:operation_0004 . -:operation_2495 a owl:Class ; +ns1:operation_2495 a owl:Class ; rdfs:label "Expression analysis" ; - :created_in "beta12orEarlier" ; - oboInOwl:comment "Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function." ; - 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", + ns1:created_in "beta12orEarlier" ; + ns2:comment "Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function." ; + ns2: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." ; + ns2:hasExactSynonym "Expression data analysis" ; + ns2:hasNarrowSynonym "Gene expression analysis", "Gene expression data analysis", "Gene expression regulation analysis", "Metagenomic inference", "Microarray data analysis", "Protein expression analysis" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso , ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0203 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0203 ], + ns1:operation_2945 . -:operation_2403 a owl:Class ; +ns1: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 edam:edam, - edam:operations ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse one or more known molecular sequences." ; + ns2:hasExactSynonym "Sequence analysis (general)" ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:seeAlso ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0080 ], - :operation_2945 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0080 ], + ns1:operation_2945 . -:topic_0160 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2: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." ; + ns2:hasHumanReadableId "Sequence_sites_features_and_motifs" ; + ns2:hasNarrowSynonym "Functional sites", "HMMs", "Sequence features", "Sequence motifs", "Sequence profiles", "Sequence sites" ; - oboInOwl:inSubset edam:edam, - edam:topics ; - rdfs:subClassOf :topic_3307 . + ns2:inSubset ns4:edam, + ns4:topics ; + rdfs:subClassOf ns1:topic_3307 . -:data_0897 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model." ; + ns2:hasExactSynonym "Protein physicochemical property", "Protein properties" ; - oboInOwl:hasNarrowSynonym "Protein sequence statistics" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:hasNarrowSynonym "Protein sequence statistics" ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_2087 . -:data_0907 a owl:Class ; +ns1: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 edam:data, - edam:edam ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0623 ], - :data_0896 . - -:data_1277 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns2:hasBroadSynonym "Protein classification data" ; + ns2:hasDefinition "An informative report on a specific protein family or other classification or group of protein sequences or structures." ; + ns2:hasExactSynonym "Protein family annotation" ; + ns2:inSubset ns4:data, + ns4:edam ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0623 ], + ns1:data_0896 . + +ns1: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)", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "An informative report on intrinsic positional features of a protein sequence." ; + ns2:hasExactSynonym "Feature table (protein)", "Protein feature table" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0896, + ns1:data_1255 . -:operation_2478 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences)." ; + ns2:hasExactSynonym "Sequence analysis (nucleic acid)" ; + ns2:hasNarrowSynonym "Nucleic acid sequence alignment analysis", "Sequence alignment analysis (nucleic acid)" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_2977 ], + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_2977 ], [ a owl:Restriction ; - owl:onProperty :has_topic ; - owl:someValuesFrom :topic_0077 ], - :operation_2403 . + owl:onProperty ns1:has_topic ; + owl:someValuesFrom ns1:topic_0077 ], + ns1:operation_2403 . -:topic_3070 a owl:Class ; +ns1:topic_3070 a owl:Class ; rdfs:label "Biology" ; - :created_in "beta13" ; - :isdebtag "true" ; - oboInOwl:hasBroadSynonym "Life science", + ns1:created_in "beta13" ; + ns1:isdebtag "true" ; + ns2:hasBroadSynonym "Life science", "Life sciences" ; - oboInOwl:hasDbXref "VT 1.5 Biological sciences", + ns2:hasDbXref "VT 1.5 Biological sciences", "VT 1.5.1 Aerobiology", "VT 1.5.13 Cryobiology", "VT 1.5.23 Reproductive biology", @@ -39257,156 +39257,156 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "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", + ns2:hasDefinition "The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on." ; + ns2:hasExactSynonym "Biological science" ; + ns2:hasHumanReadableId "Biology" ; + ns2:hasNarrowSynonym "Aerobiology", "Behavioural biology", "Biological rhythms", "Chronobiology", "Cryobiology", "Reproductive biology" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:format_2554 a owl:Class ; +ns1:format_2554 a owl:Class ; rdfs:label "Alignment format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Text format for molecular sequence alignment information." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1921 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Text format for molecular sequence alignment information." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1921 . -:operation_2423 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Predict, recognise, detect or identify some properties of a biomolecule." ; + ns2:hasNarrowSynonym "Detection", "Prediction", "Recognition" ; - oboInOwl:inSubset edam:edam, - edam:operations ; - rdfs:subClassOf :operation_0004 . + ns2:inSubset ns4:edam, + ns4:operations ; + rdfs:subClassOf ns1:operation_0004 . -:topic_0080 a owl:Class ; +ns1: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:hasExactSynonym "Sequences" ; - oboInOwl:hasHumanReadableId "Sequence_analysis" ; - oboInOwl:hasNarrowSynonym "Biological sequences", + ns1:created_in "beta12orEarlier" ; + ns1:isdebtag "true" ; + ns2:hasDefinition "The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles." ; + ns2:hasExactSynonym "Sequences" ; + ns2:hasHumanReadableId "Sequence_analysis" ; + ns2:hasNarrowSynonym "Biological sequences", "Sequence databases" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso , "http://purl.bioontology.org/ontology/MSH/D017421" ; - rdfs:subClassOf :topic_3307 . + rdfs:subClassOf ns1:topic_3307 . -:format_3245 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.2" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format for mass pectra and derived data, include peptide sequences etc." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2536 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2536 ], + ns1:format_2350 . -:data_0842 a owl:Class ; +ns1: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:hasNarrowSynonym dc:identifier ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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)." ; + ns2:hasExactSynonym "ID" ; + ns2:hasNarrowSynonym dc:identifier ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:seeAlso "\"http://purl.org/dc/elements/1.1/identifier\"", "http://semanticscience.org/resource/SIO_000115", "http://wsio.org/data_005" ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_identifier_of ; - owl:someValuesFrom :data_0006 ], - :data_0006 ; - owl:disjointWith :data_2048 . + owl:onProperty ns1:is_identifier_of ; + owl:someValuesFrom ns1:data_0006 ], + ns1:data_0006 ; + owl:disjointWith ns1:data_2048 . -:format_2551 a owl:Class ; +ns1:format_2551 a owl:Class ; rdfs:label "Sequence record format (text)" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Data format for a molecular sequence record." ; - oboInOwl:inSubset edam:edam, - edam:formats ; - rdfs:subClassOf :format_1919 . + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Data format for a molecular sequence record." ; + ns2:inSubset ns4:edam, + ns4:formats ; + rdfs:subClassOf ns1:format_1919 . -:data_2295 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol." ; + ns2:hasExactSynonym "Gene accession", "Gene code" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_1025, - :data_1893 . + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_1025, + ns1:data_1893 . -:data_2610 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; - rdfs:subClassOf :data_2091, - :data_2109 . - -:format_3547 a owl:Class ; + ns1:created_in "beta12orEarlier" ; + ns1:regex "ENS[A-Z]*[FPTG][0-9]{11}" ; + ns2:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database." ; + ns2:hasExactSynonym "Ensembl IDs" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; + rdfs:subClassOf ns1:data_2091, + ns1:data_2109 . + +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "1.9" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Format used for images and image metadata." ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :is_format_of ; - owl:someValuesFrom :data_2968 ], - :format_2350 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2968 ], + ns1:format_2350 . -:operation_2422 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Data extraction", "Retrieval" ; - oboInOwl:hasNarrowSynonym "Data retrieval (metadata)", + ns2:hasNarrowSynonym "Data retrieval (metadata)", "Metadata retrieval" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4:operations ; rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty :has_input ; - owl:someValuesFrom :data_0842 ], - :operation_0224, - :operation_3908 . + owl:onProperty ns1:has_input ; + owl:someValuesFrom ns1:data_0842 ], + ns1:operation_0224, + ns1:operation_3908 . -:operation_0004 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym "Function" ; + ns2:hasDefinition "A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs)." ; + ns2:hasNarrowSynonym "Computational method", "Computational operation", "Computational procedure", "Computational subroutine", @@ -39414,11 +39414,11 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "Lambda abstraction", "Mathematical function", "Mathematical operation" ; - oboInOwl:hasRelatedSynonym "Computational tool", + ns2:hasRelatedSynonym "Computational tool", "Process", "sumo:Function" ; - oboInOwl:inSubset edam:edam, - edam:operations ; + ns2:inSubset ns4:edam, + ns4: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 "http://en.wikipedia.org/wiki/Function_(computer_science)", "http://en.wikipedia.org/wiki/Function_(mathematics)", @@ -39438,160 +39438,160 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://www.onto-med.de/ontologies/gfo.owl#Function", "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant", "http://www.onto-med.de/ontologies/gfo.owl#Process" ; - owl:disjointWith :topic_0003, + owl:disjointWith ns1:topic_0003, owl:DeprecatedClass . -:topic_3303 a owl:Class ; +ns1:topic_3303 a owl:Class ; rdfs:label "Medicine" ; - :created_in "1.3" ; - :isdebtag "true" ; - oboInOwl:hasDbXref "VT 3.1 Basic medicine", + ns1:created_in "1.3" ; + ns1:isdebtag "true" ; + ns2: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", + ns2:hasDefinition "Research in support of healing by diagnosis, treatment, and prevention of disease." ; + ns2:hasExactSynonym "Biomedical research", "Clinical medicine", "Experimental medicine" ; - oboInOwl:hasHumanReadableId "Medicine" ; - oboInOwl:hasNarrowSynonym "General medicine", + ns2:hasHumanReadableId "Medicine" ; + ns2:hasNarrowSynonym "General medicine", "Internal medicine" ; - oboInOwl:inSubset edam:edam, - edam:events, - edam:topics ; + ns2:inSubset ns4:edam, + ns4:events, + ns4:topics ; rdfs:seeAlso ; - rdfs:subClassOf :topic_0003 . + rdfs:subClassOf ns1:topic_0003 . -:data_2099 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasBroadSynonym rdfs:label ; + ns2:hasDefinition "A name of a thing, which need not necessarily uniquely identify it." ; + ns2:hasExactSynonym "Symbolic name" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_0842 . -:data_2048 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns2: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." ; + ns2:hasExactSynonym "Document", "Record" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; 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 . + rdfs:subClassOf ns1:data_0006 . -:has_input a owl:ObjectProperty ; +ns1:has_input a owl:ObjectProperty ; rdfs:label "has input" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:has_participant" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:operation_0004 ; + rdfs:range ns1:data_0006 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000293\"", "http://wsio.org/has_input" ; - owl:inverseOf :is_input_of . + owl:inverseOf ns1:is_input_of . -:data_0976 a owl:Class ; +ns1:data_0976 a owl:Class ; rdfs:label "Identifier (by type of data)" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "An identifier that identifies a particular type of data." ; - oboInOwl:hasExactSynonym "Identifier (typed)" ; - oboInOwl:inSubset edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "An identifier that identifies a particular type of data." ; + ns2:hasExactSynonym "Identifier (typed)" ; + ns2:inSubset ns4:data, + ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:data_0842 . -:format_2350 a owl:Class ; +ns1: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 edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented." ; + ns2:hasExactSynonym "Format (typed)" ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1915 . -:format_2332 a owl:Class ; +ns1:format_2332 a owl:Class ; rdfs:label "XML" ; - :created_in "beta12orEarlier" ; - :file_extension "xml" ; - :media_type ; - oboInOwl:hasDbXref , + ns1:created_in "beta12orEarlier" ; + ns1:file_extension "xml" ; + ns1:media_type ; + ns2:hasDbXref , ; - oboInOwl:hasDefinition "eXtensible Markup Language (XML) format." ; - oboInOwl:hasExactSynonym "eXtensible Markup Language" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:hasDefinition "eXtensible Markup Language (XML) format." ; + ns2:hasExactSynonym "eXtensible Markup Language" ; + ns2:inSubset ns4:edam, + ns4:formats ; rdfs:comment "Data in XML format can be serialised into text, or binary format." ; - rdfs:subClassOf :format_1915 ; - owl:disjointWith :format_2333 . + rdfs:subClassOf ns1:format_1915 ; + owl:disjointWith ns1:format_2333 . -:is_identifier_of a owl:ObjectProperty ; +ns1:is_identifier_of a owl:ObjectProperty ; rdfs:label "is identifier of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 . + rdfs:domain ns1:data_0842 ; + rdfs:range ns1:data_0006 . -:format_2331 a owl:Class ; +ns1:format_2331 a owl:Class ; rdfs:label "HTML" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "HTML format." ; - oboInOwl:hasExactSynonym "Hypertext Markup Language" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "HTML format." ; + ns2:hasExactSynonym "Hypertext Markup Language" ; + ns2:inSubset ns4:edam, + ns4: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 . + owl:onProperty ns1:is_format_of ; + owl:someValuesFrom ns1:data_2048 ], + ns1:format_1915 ; + owl:disjointWith ns1:format_2333 . -:format_2333 a owl:Class ; +ns1:format_2333 a owl:Class ; rdfs:label "Binary format" ; - :created_in "beta12orEarlier" ; - :notRecommendedForAnnotation "true" ; - oboInOwl:hasDefinition "Binary format." ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "Binary format." ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1915 . -:data_0006 a owl:Class ; +ns1: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", + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2: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." ; + ns2:hasExactSynonym "Data record" ; + ns2:hasNarrowSynonym "Data set", "Datum" ; - oboInOwl:inSubset edam:data, - edam:edam ; + ns2:inSubset ns4:data, + ns4:edam ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/IAO_0000027\"", "\"http://purl.obolibrary.org/obo/IAO_0000030\"", "http://purl.org/biotop/biotop.owl#DigitalEntity", @@ -39600,295 +39600,295 @@ oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . "http://wsio.org/data_002", "http://www.ifomis.org/bfo/1.1/snap#Continuant", "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" ; - owl:disjointWith :format_1915, - :operation_0004, - :topic_0003, + owl:disjointWith ns1:format_1915, + ns1:operation_0004, + ns1:topic_0003, owl:DeprecatedClass . -:is_format_of a owl:ObjectProperty ; +ns1:is_format_of a owl:ObjectProperty ; rdfs:label "is format of" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2:hasDefinition "'A is_format_of B' defines for the subject A, that it is a data format of the object B." ; + ns2:hasRelatedSynonym "OBO_REL:quality_of" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "false" ; + ns2: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 ; + rdfs:domain ns1:format_1915 ; + rdfs:range ns1:data_0006 ; rdfs:seeAlso "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" . -:has_output a owl:ObjectProperty ; +ns1:has_output a owl:ObjectProperty ; rdfs:label "has output" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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." ; + ns2:hasRelatedSynonym "OBO_REL:has_participant" ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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 ; + rdfs:domain ns1:operation_0004 ; + rdfs:range ns1:data_0006 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/OBI_0000299\"", "http://wsio.org/has_output" ; - owl:inverseOf :is_output_of . + owl:inverseOf ns1:is_output_of . -edam:events a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:events a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -:has_topic a owl:ObjectProperty ; +ns1:has_topic a owl:ObjectProperty ; rdfs:label "has topic" ; - oboOther:is_anti_symmetric "false" ; - oboOther:is_reflexive "false" ; - oboOther:is_symmetric "false" ; - oboOther: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 "edam", + ns3:is_anti_symmetric "false" ; + ns3:is_reflexive "false" ; + ns3:is_symmetric "false" ; + ns3:transitive_over "OBO_REL:is_a" ; + ns2: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)." ; + ns2:inSubset "edam", "relations" ; - oboInOwl:isCyclic "true" ; + ns2: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:unionOf ( ns1:data_0006 ns1:operation_0004 ) ] ; + rdfs:range ns1:topic_0003 ; rdfs:seeAlso "\"http://purl.obolibrary.org/obo/IAO_0000136\"", "\"http://purl.obolibrary.org/obo/OBI_0000298\"", "http://annotation-ontology.googlecode.com/svn/trunk/annotation-core.owl#hasTopic", "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#has-quality" ; - owl:inverseOf :is_topic_of . + owl:inverseOf ns1:is_topic_of . -:format_2330 a owl:Class ; +ns1:format_2330 a owl:Class ; rdfs:label "Textual format" ; - :created_in "beta12orEarlier" ; - oboInOwl:hasDefinition "Textual format." ; - oboInOwl:hasNarrowSynonym "Plain text format", + ns1:created_in "beta12orEarlier" ; + ns2:hasDefinition "Textual format." ; + ns2:hasNarrowSynonym "Plain text format", "txt" ; - oboInOwl:inSubset edam:edam, - edam:formats ; + ns2:inSubset ns4:edam, + ns4: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 . + rdfs:subClassOf ns1:format_1915 ; + owl:disjointWith ns1:format_2333 . -:data_2091 a owl:Class ; +ns1: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 edam:data, - edam:edam, - edam:identifiers ; + ns1:created_in "beta12orEarlier" ; + ns1:notRecommendedForAnnotation "true" ; + ns2:hasDefinition "A persistent (stable) and unique identifier, typically identifying an object (entry) from a database." ; + ns2:inSubset ns4:data, + ns4:edam, + ns4:identifiers ; rdfs:seeAlso "http://semanticscience.org/resource/SIO_000675", "http://semanticscience.org/resource/SIO_000731" ; - rdfs:subClassOf :data_0842 . + rdfs:subClassOf ns1:data_0842 . -edam:topics a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:topics a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:identifiers a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:identifiers a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:operations a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:operations a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:formats a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:formats a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:data a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:data a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . -edam:obsolete a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:obsolete a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . owl:DeprecatedClass a owl:Class . -edam:edam a owl:AnnotationProperty ; - rdfs:subPropertyOf oboInOwl:SubsetProperty . +ns4:edam a owl:AnnotationProperty ; + rdfs:subPropertyOf ns2:SubsetProperty . [] 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_input_of ; - owl:annotatedTarget "true" . - -[] a owl:Axiom ; - rdfs:comment "Almost exact but limited to identifying resources." ; - owl:annotatedProperty oboInOwl:hasNarrowSynonym ; - owl:annotatedSource :data_0842 ; - owl:annotatedTarget dc:identifier . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_function_of ; + owl:annotatedTarget "OBO_REL:inheres_in" . [] 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" . + 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 ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:format_1915 ; + owl:annotatedTarget "File format" . [] 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" . + 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 ns2:hasBroadSynonym ; + owl:annotatedSource ns1:format_1915 ; + owl:annotatedTarget "Data model" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_topic ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1: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 "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" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:has_output ; + owl:annotatedTarget "true" . [] 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_input_of ; + owl:annotatedTarget "OBO_REL:participates_in" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_function_of ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_function_of ; owl:annotatedTarget "true" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_input ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_output_of ; owl:annotatedTarget "true" . [] 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_format_of ; + owl:annotatedTarget "OBO_REL:quality_of" . + +[] a owl:Axiom ; + rdfs:comment "Closely related, but focusing on labeling and human readability but not on identification." ; + owl:annotatedProperty ns2:hasBroadSynonym ; + owl:annotatedSource ns1:data_2099 ; + owl:annotatedTarget rdfs:label . + +[] 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:has_function ; + owl:annotatedTarget "OBO_REL:bearer_of" . [] 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:annotatedProperty ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:is_function_of ; owl:annotatedTarget "OBO_REL:function_of" . +[] a owl:Axiom ; + rdfs:comment "Almost exact but limited to identifying resources." ; + owl:annotatedProperty ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0842 ; + owl:annotatedTarget dc:identifier . + [] 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:annotatedProperty ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0006 ; owl:annotatedTarget "Data set" . [] 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 . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_input_of ; + owl:annotatedTarget "true" . [] 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:hasBroadSynonym ; - owl:annotatedSource :format_1915 ; - owl:annotatedTarget "Data model" . + 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 ns1:comment_handle ; + owl:annotatedSource ns1:operation_3357 ; + owl:annotatedTarget ns1:comment_handle . [] 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" . + 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 ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0006 ; + owl:annotatedTarget "Datum" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_output_of ; - owl:annotatedTarget "true" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_output_of ; + owl:annotatedTarget "OBO_REL:participates_in" . [] 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" . + 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:is_topic_of ; + owl:annotatedTarget "OBO_REL:quality_of" . [] 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:annotatedProperty ns2:hasExactSynonym ; + owl:annotatedSource ns1:data_0006 ; owl:annotatedTarget "Data record" . -[] 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 "Computational tool provides one or more operations." ; - owl:annotatedProperty oboInOwl:hasRelatedSynonym ; - owl:annotatedSource :operation_0004 ; + owl:annotatedProperty ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:operation_0004 ; owl:annotatedTarget "Computational tool" . [] 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" . + rdfs:comment "Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'." ; + owl:annotatedProperty ns2:hasNarrowSynonym ; + owl:annotatedSource ns1:data_0925 ; + owl:annotatedTarget "SO:0001248" . [] 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 . + rdfs:comment "A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'." ; + owl:annotatedProperty ns1:example ; + owl:annotatedSource ns1:data_1165 ; + owl:annotatedTarget "UniProt|Enzyme Nomenclature" . [] a owl:Axiom ; - rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :has_output ; - owl:annotatedTarget "true" . + rdfs:comment "Operation is a function that is computational. It typically has input(s) and output(s), which are always data." ; + owl:annotatedProperty ns2:hasBroadSynonym ; + owl:annotatedSource ns1:operation_0004 ; + owl:annotatedTarget "Function" . [] a owl:Axiom ; rdfs:comment "In very unusual cases." ; - owl:annotatedProperty oboInOwl:isCyclic ; - owl:annotatedSource :is_topic_of ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:has_topic ; 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_topic_of ; - owl:annotatedTarget "OBO_REL:quality_of" . - [] 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:annotatedProperty ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:has_output ; owl:annotatedTarget "OBO_REL:has_participant" . [] 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:hasNarrowSynonym ; - owl:annotatedSource :format_1915 ; - owl:annotatedTarget "File format" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:has_input ; + owl:annotatedTarget "true" . [] 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" . + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty ns2:isCyclic ; + owl:annotatedSource ns1:is_topic_of ; + owl:annotatedTarget "true" . + +[] 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:operation_0004 ; + owl:annotatedTarget "Process" . + +[] 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 ns2:hasRelatedSynonym ; + owl:annotatedSource ns1:has_input ; + owl:annotatedTarget "OBO_REL:has_participant" . diff --git a/src/notebooks/EdamDiff.ipynb b/src/notebooks/EdamDiff.ipynb index 6828971..57504b5 100644 --- a/src/notebooks/EdamDiff.ipynb +++ b/src/notebooks/EdamDiff.ipynb @@ -2,20 +2,9 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": 16, "id": "0ffbb163", "metadata": {}, - "outputs": [], - "source": [ - "from rdflib import ConjunctiveGraph\n", - "import difflib" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "708a1fdc", - "metadata": {}, "outputs": [ { "name": "stdout", @@ -26,13 +15,25 @@ } ], "source": [ + "from rdflib import ConjunctiveGraph, Namespace\n", + "import difflib\n", + "from rdflib.compare import to_isomorphic, graph_diff\n", + "\n", "import rdflib\n", "print(rdflib.__version__)" ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, + "id": "708a1fdc", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, "id": "c697d265", "metadata": {}, "outputs": [], @@ -77,7 +78,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "id": "5074f457", "metadata": {}, "outputs": [], @@ -163,29 +164,22 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "id": "3b29ad4d", "metadata": {}, - "outputs": [ - { - "ename": "AssertionError", - "evalue": "The two serializations of the RDF graph should be the same", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mAssertionError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32massert\u001b[0m \u001b[0mv1\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mv2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"The two serializations of the RDF graph should be the same\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;31mAssertionError\u001b[0m: The two serializations of the RDF graph should be the same" - ] - } - ], + "outputs": [], "source": [ - "assert v1 == v2, \"The two serializations of the RDF graph should be the same\"" + "# v1 and v2 are the same but in serialized in different order\n", + "# assert v1 == v2, \"The two serializations of the RDF graph should be the same\"\n", + "from pprint import pprint\n", + "import sys\n", + "\n", + "sys.stdout.writelines(difflib.unified_diff(v1.splitlines(keepends=True), v2.splitlines(keepends=True), n=3))" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "id": "1eab5315", "metadata": {}, "outputs": [], @@ -195,7 +189,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "id": "27e1b5d7", "metadata": {}, "outputs": [], @@ -223,39 +217,280 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, + "id": "b746c9e8", + "metadata": {}, + "outputs": [], + "source": [ + "iso1_ttl = iso1.serialize(format=\"turtle\")\n", + "iso2_ttl = iso2.serialize(format=\"turtle\")\n", + "sys.stdout.writelines(difflib.unified_diff(iso1_ttl.splitlines(keepends=True), iso2_ttl.splitlines(keepends=True), n=3))" + ] + }, + { + "cell_type": "code", + "execution_count": null, "id": "99c5efeb", "metadata": {}, + "outputs": [], + "source": [ + "kg1 = ConjunctiveGraph()\n", + "kg1.parse(data=v1, format=\"turtle\")\n", + "v12 = kg1.serialize(format=\"turtle\")\n", + "print(v12)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9f729863", + "metadata": {}, + "outputs": [], + "source": [ + "kg2 = ConjunctiveGraph()\n", + "kg2.parse(data=v2, format=\"turtle\")\n", + "v22 = kg2.serialize(format=\"turtle\")\n", + "print(v22)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c0e48552", + "metadata": {}, + "outputs": [], + "source": [ + "assert(v12==v22)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e4f3c61d", + "metadata": {}, + "outputs": [], + "source": [ + "#!pip install jellyfish" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1b73a8ca", + "metadata": {}, + "outputs": [], + "source": [ + "import jellyfish\n", + "\n", + "print(jellyfish.jaro_similarity(v1, v2))\n", + "print(jellyfish.jaro_similarity(v12, v22))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "94464cc7", + "metadata": {}, + "outputs": [], + "source": [ + "print(jellyfish.levenshtein_distance(v1, v2))\n", + "print(jellyfish.levenshtein_distance(v1, v3))\n", + "print(jellyfish.levenshtein_distance(v12, v22))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "07cf7a55", + "metadata": {}, + "outputs": [], + "source": [ + "v23_xml = to_isomorphic(kg2).serialize(format=\"xml\")\n", + "v13_xml = to_isomorphic(kg1).serialize(format=\"xml\")\n", + "print(jellyfish.levenshtein_distance(v23_xml, v13_xml))\n", + "\n", + "\n", + "v23_ttl = to_isomorphic(kg2).serialize(format=\"turtle\")\n", + "v13_ttl = to_isomorphic(kg1).serialize(format=\"turtle\")\n", + "print(jellyfish.levenshtein_distance(v23_ttl, v13_ttl))\n", + "\n", + "\n", + "#print(v13)\n", + "#print(v23)" + ] + }, + { + "cell_type": "markdown", + "id": "446bca4f", + "metadata": {}, + "source": [ + "# EDAMdiff prototype" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6096b712", + "metadata": {}, + "outputs": [], + "source": [ + "from rich.jupyter import print\n", + "from rich.progress import Progress\n", + "\n", + "def diffEdam(rdf_1, rdf_2):\n", + " \n", + " with Progress() as progress:\n", + " task1 = progress.add_task(\"[red]Computing diff ...\", total=5)\n", + " while not progress.finished:\n", + " kg_1 = ConjunctiveGraph().parse(rdf_1)\n", + " progress.update(task1, advance=1)\n", + " progress.refresh()\n", + " \n", + " kg_2 = ConjunctiveGraph().parse(rdf_2)\n", + " progress.update(task1, advance=2)\n", + " progress.refresh()\n", + " \n", + " kg_1_ttl = to_isomorphic(kg_1).serialize(format=\"turtle\")\n", + " progress.update(task1, advance=3)\n", + " progress.refresh()\n", + " \n", + " kg_2_ttl = to_isomorphic(kg_2).serialize(format=\"turtle\")\n", + " progress.update(task1, advance=4)\n", + " progress.refresh()\n", + " \n", + " diff_output = difflib.unified_diff(kg_1_ttl.splitlines(keepends=True), kg_2_ttl.splitlines(keepends=True), n=2)\n", + " progress.update(task1, advance=5)\n", + " progress.refresh()\n", + " \n", + " for line in diff_output:\n", + " if line.startswith(\"+\"):\n", + " print(\"[green]\"+line.strip())\n", + " elif line.startswith(\"-\"):\n", + " print(\"[red]\"+line.strip())\n", + " else: \n", + " print(line.strip())\n", + " \n", + " progress.finnish()\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f1307d19", + "metadata": {}, + "outputs": [], + "source": [ + "unstable_edam = \"https://edamontology.org/EDAM_unstable.owl\"\n", + "stable_edam = \"https://edamontology.org/EDAM.owl\"\n", + "\n", + "diffEdam(unstable_edam, stable_edam)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "30adec82", + "metadata": {}, + "outputs": [], + "source": [ + "unstable_edam = \"https://edamontology.org/EDAM_unstable.owl\"\n", + "stable_edam = \"https://edamontology.org/EDAM.owl\"\n", + "\n", + "local_edam = \"edam_split.ttl\"\n", + "\n", + "remote_edam_kg = ConjunctiveGraph().parse(stable_edam)\n", + "print(len(remote_edam_kg))\n", + "\n", + "local_edam_kg = ConjunctiveGraph().parse(local_edam)\n", + "print(len(local_edam_kg))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "57fbf8cf", + "metadata": {}, + "outputs": [], + "source": [ + "ref_ttl = to_isomorphic(remote_edam_kg).serialize(format=\"turtle\")\n", + "dev_ttl = to_isomorphic(local_edam_kg).serialize(format=\"turtle\")\n", + "sys.stdout.writelines(difflib.unified_diff(ref_ttl.splitlines(keepends=True), dev_ttl.splitlines(keepends=True), n=3))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4913d26d", + "metadata": {}, + "outputs": [], + "source": [ + "local_edam_kg = ConjunctiveGraph().parse(\"edam_mod.ttl\")\n", + "print(len(local_edam_kg))\n", + "\n", + "dev_ttl = to_isomorphic(local_edam_kg).serialize(format=\"turtle\")\n", + "for line in difflib.unified_diff(ref_ttl.splitlines(keepends=True), dev_ttl.splitlines(keepends=True), n=2):\n", + " #sys.stdout.writelines(line)\n", + " if line.startswith(\"+\"):\n", + " print(\"[green]\"+line.strip())\n", + " elif line.startswith(\"-\"):\n", + " print(\"[red]\"+line.strip())\n", + " else: \n", + " print(line.strip())" + ] + }, + { + "cell_type": "markdown", + "id": "146db667", + "metadata": {}, + "source": [ + "# Test set\n", + " - diff should output {} when class definitions are not in the same order \n", + " - diff should output {} when IN A class definitions PROPERTIES ARE NOT IN THE SAME ORDER\n", + " - diff should output {} when there are ≠ whitespaces or indentation or blank lines \n", + " - diff should output {} when different namespaces are used \n", + " \n", + "Test scenario \n", + " + edam_v1 -> cannonical serializion -> edam_tmp_v1 \n", + " + edam_v2 -> cannonical serializion -> edam_tmp_v2 \n", + " + DIFF( edam_tmp_v1, edam_tmp_v2) " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "b7b8a292", + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "@prefix : .\n", - "@prefix edam: .\n", - "@prefix oboInOwl: .\n", + "21\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", "@prefix owl: .\n", "@prefix rdfs: .\n", "\n", - ":data_0852 a owl:Class ;\n", + "ns2:data_0852 a owl:Class ;\n", " rdfs:label \"Sequence mask type\" ;\n", - " :created_in \"beta12orEarlier\" ;\n", - " :obsolete_since \"1.5\" ;\n", - " oboInOwl:consider :data_0842 ;\n", - " oboInOwl:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", - " oboInOwl:inSubset edam:obsolete ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.5\" ;\n", + " ns1:consider ns2:data_0842 ;\n", + " ns1:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + " ns1:inSubset ;\n", " 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.\" ;\n", " rdfs:subClassOf owl:DeprecatedClass ;\n", " owl:deprecated \"true\" .\n", "\n", - ":data_0853 a owl:Class ;\n", + "ns2:data_0853 a owl:Class ;\n", " rdfs:label \"DNA sense specification\" ;\n", - " :created_in \"beta12orEarlier\" ;\n", - " :obsolete_since \"1.20\" ;\n", - " :oldParent :data_2534 ;\n", - " oboInOwl:consider :data_2534 ;\n", - " oboInOwl:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", - " oboInOwl:inSubset edam:obsolete ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.20\" ;\n", + " ns2:oldParent ns2:data_2534 ;\n", + " ns1:consider ns2:data_2534 ;\n", + " ns1:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + " ns1:inSubset ;\n", " 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.\" ;\n", " rdfs:subClassOf owl:DeprecatedClass ;\n", " owl:deprecated \"true\" .\n", @@ -265,160 +500,395 @@ } ], "source": [ - "kg1 = ConjunctiveGraph()\n", - "kg1.parse(data=v1, format=\"turtle\")\n", - "v12 = kg1.serialize(format=\"turtle\")\n", - "print(v12)" + "edam_v0 = \"edam_v0.ttl\"\n", + "#edam_v1 = \"edam_v1_class_order.ttl\"\n", + "\n", + "kg = ConjunctiveGraph().parse(edam_v0)\n", + "print(len(kg))\n", + "\n", + "reformatted_v0 = to_isomorphic(kg).serialize(format=\"turtle\")\n", + "print(reformatted_v0)" ] }, { "cell_type": "code", - "execution_count": 11, - "id": "9f729863", + "execution_count": 6, + "id": "6ea64d6c", + "metadata": {}, + "outputs": [], + "source": [ + "edam_ref = \"\"\"\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", + "@prefix owl: .\n", + "@prefix rdfs: .\n", + "\n", + "ns2:data_0852 a owl:Class ;\n", + " rdfs:label \"Sequence mask type\" ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.5\" ;\n", + " ns1:consider ns2:data_0842 ;\n", + " ns1:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + " ns1:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + "ns2:data_0853 a owl:Class ;\n", + " rdfs:label \"DNA sense specification\" ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.20\" ;\n", + " ns2:oldParent ns2:data_2534 ;\n", + " ns1:consider ns2:data_2534 ;\n", + " ns1:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + " ns1:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "id": "a4be3fc0", + "metadata": {}, + "source": [ + "### 0. Test compare with the re-seriaization of the reference file" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "38d58a9d", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "@prefix : .\n", - "@prefix edam: .\n", - "@prefix oboInOwl: .\n", + "21\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", "@prefix owl: .\n", "@prefix rdfs: .\n", "\n", - ":data_0852 a owl:Class ;\n", + "ns2:data_0852 a owl:Class ;\n", " rdfs:label \"Sequence mask type\" ;\n", - " :created_in \"beta12orEarlier\" ;\n", - " :obsolete_since \"1.5\" ;\n", - " oboInOwl:consider :data_0842 ;\n", - " oboInOwl:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", - " oboInOwl:inSubset edam:obsolete ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.5\" ;\n", + " ns1:consider ns2:data_0842 ;\n", + " ns1:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + " ns1:inSubset ;\n", " 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.\" ;\n", " rdfs:subClassOf owl:DeprecatedClass ;\n", " owl:deprecated \"true\" .\n", "\n", - ":data_0853 a owl:Class ;\n", + "ns2:data_0853 a owl:Class ;\n", " rdfs:label \"DNA sense specification\" ;\n", - " :created_in \"beta12orEarlier\" ;\n", - " :obsolete_since \"1.20\" ;\n", - " :oldParent :data_2534 ;\n", - " oboInOwl:consider :data_2534 ;\n", - " oboInOwl:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", - " oboInOwl:inSubset edam:obsolete ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.20\" ;\n", + " ns2:oldParent ns2:data_2534 ;\n", + " ns1:consider ns2:data_2534 ;\n", + " ns1:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + " ns1:inSubset ;\n", " 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.\" ;\n", " rdfs:subClassOf owl:DeprecatedClass ;\n", " owl:deprecated \"true\" .\n", "\n", - "\n" + "\n", + "---\n", + "+++\n", + "@@ -1,3 +1,2 @@\n", + "-\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", + "@@ -27,2 +26,3 @@\n", + "rdfs:subClassOf owl:DeprecatedClass ;\n", + "owl:deprecated \"true\" .\n", + "+\n" ] } ], "source": [ - "kg2 = ConjunctiveGraph()\n", - "kg2.parse(data=v2, format=\"turtle\")\n", - "v22 = kg2.serialize(format=\"turtle\")\n", - "print(v22)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "c0e48552", - "metadata": {}, - "outputs": [], - "source": [ - "assert(v12==v22)" + "edam_v0 = \"edam_ref.ttl\"\n", + "kg = ConjunctiveGraph().parse(edam_v0)\n", + "print(len(kg))\n", + "\n", + "reformatted_v0 = to_isomorphic(kg).serialize(format=\"turtle\")\n", + "print(reformatted_v0)\n", + "\n", + "for line in difflib.unified_diff(edam_ref.splitlines(keepends=True), reformatted_v0.splitlines(keepends=True), n=2):\n", + " print(line.strip())" ] }, { - "cell_type": "code", - "execution_count": 13, - "id": "e4f3c61d", + "cell_type": "markdown", + "id": "529ae535", "metadata": {}, - "outputs": [], "source": [ - "#!pip install jellyfish" + "### 1. Test compare with the re-seriaization of the class-order modification" ] }, { "cell_type": "code", - "execution_count": 14, - "id": "1b73a8ca", + "execution_count": 11, + "id": "6fe1bc86", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0.8825825928843302\n", - "1.0\n" + "21\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", + "@prefix owl: .\n", + "@prefix rdfs: .\n", + "\n", + "ns2:data_0852 a owl:Class ;\n", + " rdfs:label \"Sequence mask type\" ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.5\" ;\n", + " ns1:consider ns2:data_0842 ;\n", + " ns1:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + " ns1:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + "ns2:data_0853 a owl:Class ;\n", + " rdfs:label \"DNA sense specification\" ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.20\" ;\n", + " ns2:oldParent ns2:data_2534 ;\n", + " ns1:consider ns2:data_2534 ;\n", + " ns1:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + " ns1:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + "\n", + "---\n", + "+++\n", + "@@ -1,3 +1,2 @@\n", + "-\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", + "@@ -27,2 +26,3 @@\n", + "rdfs:subClassOf owl:DeprecatedClass ;\n", + "owl:deprecated \"true\" .\n", + "+\n" ] } ], "source": [ - "import jellyfish\n", + "edam_v1 = \"edam_v1_class_order.ttl\"\n", + "kg = ConjunctiveGraph().parse(edam_v1)\n", + "print(len(kg))\n", "\n", - "print(jellyfish.jaro_similarity(v1, v2))\n", - "print(jellyfish.jaro_similarity(v12, v22))" + "reformatted_v1 = to_isomorphic(kg).serialize(format=\"turtle\")\n", + "print(reformatted_v1)\n", + "\n", + "for line in difflib.unified_diff(edam_ref.splitlines(keepends=True), reformatted_v1.splitlines(keepends=True), n=2):\n", + " print(line.strip())" + ] + }, + { + "cell_type": "markdown", + "id": "c271c6d2", + "metadata": {}, + "source": [ + "### 2. Test compare with the re-seriaization of the prop-order modification plus spaces" ] }, { "cell_type": "code", - "execution_count": 15, - "id": "94464cc7", + "execution_count": 22, + "id": "993bd07d", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "243\n", - "1022\n", - "0\n" + "21\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", + "@prefix owl: .\n", + "@prefix rdfs: .\n", + "\n", + "ns2:data_0852 a owl:Class ;\n", + " rdfs:label \"Sequence mask type\" ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.5\" ;\n", + " ns1:consider ns2:data_0842 ;\n", + " ns1:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + " ns1:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + "ns2:data_0853 a owl:Class ;\n", + " rdfs:label \"DNA sense specification\" ;\n", + " ns2:created_in \"beta12orEarlier\" ;\n", + " ns2:obsolete_since \"1.20\" ;\n", + " ns2:oldParent ns2:data_2534 ;\n", + " ns1:consider ns2:data_2534 ;\n", + " ns1:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + " ns1:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + "\n", + "---\n", + "+++\n", + "@@ -1,3 +1,2 @@\n", + "-\n", + "@prefix ns1: .\n", + "@prefix ns2: .\n", + "@@ -27,2 +26,3 @@\n", + "rdfs:subClassOf owl:DeprecatedClass ;\n", + "owl:deprecated \"true\" .\n", + "+\n" ] } ], "source": [ - "print(jellyfish.levenshtein_distance(v1, v2))\n", - "print(jellyfish.levenshtein_distance(v1, v3))\n", - "print(jellyfish.levenshtein_distance(v12, v22))" + "edam_v2 = \"edam_space_prop_order_mod.ttl\"\n", + "kg = ConjunctiveGraph().parse(edam_v2)\n", + "print(len(kg))\n", + "\n", + "#reformatted_v2 = to_isomorphic(kg).serialize(format=\"turtle\")\n", + "reformatted_v2 = kg.serialize(format=\"turtle\")\n", + "print(reformatted_v2)\n", + "\n", + "for line in difflib.unified_diff(edam_ref.splitlines(keepends=True), reformatted_v2.splitlines(keepends=True), n=2):\n", + " print(line.strip())" + ] + }, + { + "cell_type": "markdown", + "id": "afc741c0", + "metadata": {}, + "source": [ + "### 3. Test compare with the re-seriaization of the namespace modification (name + order)" ] }, { "cell_type": "code", - "execution_count": 16, - "id": "07cf7a55", + "execution_count": 23, + "id": "b6215369", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0\n", - "0\n" + "21\n", + "@prefix : .\n", + "@prefix obo: .\n", + "@prefix owl: .\n", + "@prefix rdfs: .\n", + "\n", + ":data_0852 a owl:Class ;\n", + " rdfs:label \"Sequence mask type\" ;\n", + " :created_in \"beta12orEarlier\" ;\n", + " :obsolete_since \"1.5\" ;\n", + " obo:consider :data_0842 ;\n", + " obo:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + " obo:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + ":data_0853 a owl:Class ;\n", + " rdfs:label \"DNA sense specification\" ;\n", + " :created_in \"beta12orEarlier\" ;\n", + " :obsolete_since \"1.20\" ;\n", + " :oldParent :data_2534 ;\n", + " obo:consider :data_2534 ;\n", + " obo:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + " obo:inSubset ;\n", + " 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.\" ;\n", + " rdfs:subClassOf owl:DeprecatedClass ;\n", + " owl:deprecated \"true\" .\n", + "\n", + "\n", + "---\n", + "+++\n", + "@@ -1,28 +1,28 @@\n", + "-\n", + "-@prefix ns1: .\n", + "-@prefix ns2: .\n", + "+@prefix : .\n", + "+@prefix obo: .\n", + "@prefix owl: .\n", + "@prefix rdfs: .\n", + "\n", + "-ns2:data_0852 a owl:Class ;\n", + "+:data_0852 a owl:Class ;\n", + "rdfs:label \"Sequence mask type\" ;\n", + "- ns2:created_in \"beta12orEarlier\" ;\n", + "- ns2:obsolete_since \"1.5\" ;\n", + "- ns1:consider ns2:data_0842 ;\n", + "- ns1:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + "- ns1:inSubset ;\n", + "+ :created_in \"beta12orEarlier\" ;\n", + "+ :obsolete_since \"1.5\" ;\n", + "+ obo:consider :data_0842 ;\n", + "+ obo:hasDefinition \"A label (text token) describing the type of sequence masking to perform.\" ;\n", + "+ obo:inSubset ;\n", + "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.\" ;\n", + "rdfs:subClassOf owl:DeprecatedClass ;\n", + "owl:deprecated \"true\" .\n", + "\n", + "-ns2:data_0853 a owl:Class ;\n", + "+:data_0853 a owl:Class ;\n", + "rdfs:label \"DNA sense specification\" ;\n", + "- ns2:created_in \"beta12orEarlier\" ;\n", + "- ns2:obsolete_since \"1.20\" ;\n", + "- ns2:oldParent ns2:data_2534 ;\n", + "- ns1:consider ns2:data_2534 ;\n", + "- ns1:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + "- ns1:inSubset ;\n", + "+ :created_in \"beta12orEarlier\" ;\n", + "+ :obsolete_since \"1.20\" ;\n", + "+ :oldParent :data_2534 ;\n", + "+ obo:consider :data_2534 ;\n", + "+ obo:hasDefinition \"The strand of a DNA sequence (forward or reverse).\" ;\n", + "+ obo:inSubset ;\n", + "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.\" ;\n", + "rdfs:subClassOf owl:DeprecatedClass ;\n", + "owl:deprecated \"true\" .\n", + "+\n" ] } ], "source": [ - "v23_xml = to_isomorphic(kg2).serialize(format=\"xml\")\n", - "v13_xml = to_isomorphic(kg1).serialize(format=\"xml\")\n", - "print(jellyfish.levenshtein_distance(v23_xml, v13_xml))\n", + "edam_v3 = \"edam_namespace_mod.ttl\"\n", + "kg = ConjunctiveGraph().parse(edam_v3)\n", + "print(len(kg))\n", "\n", + "edam_ns = Namespace(\"http://edamontology.org/\")\n", + "obo_ns = Namespace(\"http://www.geneontology.org/formats/oboInOwl#\")\n", + "#kg.bind(\"edam\", edam_ns)\n", + "kg.bind(\"\", edam_ns)\n", + "kg.bind(\"obo\", obo_ns)\n", "\n", - "v23_ttl = to_isomorphic(kg2).serialize(format=\"turtle\")\n", - "v13_ttl = to_isomorphic(kg1).serialize(format=\"turtle\")\n", - "print(jellyfish.levenshtein_distance(v23_ttl, v13_ttl))\n", - "\n", + "#reformatted_v3 = to_isomorphic(kg).serialize(format=\"turtle\")\n", + "reformatted_v3 = kg.serialize(format=\"turtle\")\n", + "print(reformatted_v3)\n", "\n", - "#print(v13)\n", - "#print(v23)" + "for line in difflib.unified_diff(edam_ref.splitlines(keepends=True), reformatted_v3.splitlines(keepends=True), n=2):\n", + " print(line.strip())" ] }, { "cell_type": "code", "execution_count": null, - "id": "f1307d19", + "id": "66b8b8aa", "metadata": {}, "outputs": [], "source": [] @@ -426,7 +896,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -440,7 +910,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.18" + "version": "3.9.17" } }, "nbformat": 4,